User Matt Howells - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T17:36:08Zhttp://stackoverflow.com/feeds/user/16881http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/101174/is-there-a-zip-like-method-in-net/101222#10122216Answer by Matt Howells for Is there a zip-like method in .Net?Matt Howells2008-09-19T11:34:43Z2009-12-09T15:12:29Z<p>Update: It will be built-in in C# 4!</p>
<p>Here is a C# 3 version:</p>
<pre><code>IEnumerable<TResult> Zip<TResult,T1,T2>
(IEnumerable<T1> a,
IEnumerable<T2> b,
Func<T1,T2,TResult> combine)
{
using (var f = a.GetEnumerator())
using (var s = b.GetEnumerator())
{
while (f.MoveNext() && s.MoveNext())
yield return combine(f.Current, s.Current);
}
}
</code></pre>
<p>Dropped the C# 2 version as it was showing its age.</p>
http://stackoverflow.com/questions/1833054/how-can-i-format-a-nullable-datetime-with-tostring/1833076#18330761Answer by Matt Howells for How can I format a nullable DateTime with ToString()?Matt Howells2009-12-02T14:02:50Z2009-12-02T14:07:54Z<p>The problem with formulating an answer to this question is that you do not specify the desired output when the nullable datetime has no value. The following code will output <code>DateTime.MinValue</code> in such a case, and unlike the currently accepted answer, will not throw an exception.</p>
<pre><code>dt2.GetValueOrDefault().ToString(format);
</code></pre>
http://stackoverflow.com/questions/1825304/return-null-for-firstordefault-on-empty-ienumerableint/1825335#182533510Answer by Matt Howells for Return null for FirstOrDefault() on empty IEnumerable<int>?Matt Howells2009-12-01T10:33:45Z2009-12-01T10:33:45Z<pre><code>int? nullableId = GetNonNullableInts().Cast<int?>().FirstOrDefault();
</code></pre>
http://stackoverflow.com/questions/136528/using-nets-reflection-emit-to-generate-interface1Using .Net's Reflection.Emit to generate interface Matt Howells2008-09-25T22:14:17Z2009-12-01T08:01:33Z
<p>I need to generate a new interface at run-time with all the same members as an existing interface, except that I will be putting different attributes on some of the methods (some of the attribute parameters are not known until run-time). Can anyone assist?</p>
http://stackoverflow.com/questions/101180/which-is-the-best-net-xml-rpc-library1Which is the best .Net XML-RPC library?Matt Howells2008-09-19T11:24:36Z2009-11-28T19:38:45Z
<p>I need to communicate with an XML-RPC server from a .NET 2.0 client. Can you recommend any libraries?</p>
<p>EDIT: Having tried XML-RPC.Net, I like the way it generates dynamic proxies, it is very neat. Unfortunately, as always, things are not so simple. I am accessing an XML-RPC service which uses the unorthodox technique of having object names in the names of the methods, like so:</p>
<pre><code>object1.object2.someMethod(string1)
</code></pre>
<p>This means I can't use the attributes to set the names of my methods, as they are not known until run-time. If you start trying to get closer to the raw calls, XML-RPC.Net starts to get pretty messy.</p>
<p>So, anyone know of a simple and straightforward XML-RPC library that'll just let me do (pseudocode):</p>
<pre><code>x = new xmlrpc(host, port)
x.makeCall("methodName", "arg1");
</code></pre>
<p>I had a look at a thing by Michael somebody on Codeproject, but there are no unit tests and the code looks pretty dire.</p>
<p>Unless someone has a better idea looks like I am going to have to start an open source project myself!</p>
http://stackoverflow.com/questions/1807481/how-to-find-if-a-value-is-in-an-array-in-visual-c/1807641#18076418Answer by Matt Howells for How to find if a value is in an array in Visual C#Matt Howells2009-11-27T09:24:07Z2009-11-27T10:34:17Z<p>If the array is sorted, then this is quickest:</p>
<pre><code>Array.BinarySearch(myArray, value) >= 0;
</code></pre>
<p>If the array is searched a lot and rarely modified, then you may find it worthwhile to sort the array after modification (using <code>Array.Sort</code>) and use the above. Otherwise, use the option you prefer:</p>
<pre><code>Array.IndexOf(myArray, value) >= 0; //.Net 1
Array.Exists(array, delegate(int x) { return x == value; }); //.Net 2
myArray.Contains(value); //.Net 3
</code></pre>
<p><code>IndexOf</code> has the best performance for unsorted arrays. The second option uses a predicate delegate, and the third requires the creation of an enumerator object.</p>
http://stackoverflow.com/questions/600293/how-to-check-if-a-number-is-a-power-of-2/1804686#18046860Answer by Matt Howells for How to check if a number is a power of 2Matt Howells2009-11-26T16:37:51Z2009-11-26T16:37:51Z<pre><code>bool IsPowerOfTwo(ulong x)
{
return x > 0 && (x & (x - 1)) == 0;
}
</code></pre>
http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer15Best algorithm to count the number of set bits in a 32-bit integer?Matt Howells2008-09-20T19:04:38Z2009-11-24T10:21:09Z
<p>8 bits representing the number 7 look like this:</p>
<pre><code>00000111
</code></pre>
<p>Three bits are set. What is the best algorithm to determine the number of set bits in a 32-bit integer?</p>
http://stackoverflow.com/questions/1782994/c-unit-testing-of-child-classes/1783138#17831380Answer by Matt Howells for C#: Unit testing of child classesMatt Howells2009-11-23T13:29:46Z2009-11-23T13:29:46Z<p>I would make my test class for <code>MoreMath</code> inherit from the test class for <code>SomeMath</code>, thus inheriting all of the tests of that class. This means I only have to write additional tests for the new features, but all the subclass' features are fully tested.</p>
http://stackoverflow.com/questions/1772156/linq-to-xml-how-to-clone-nodes-while-retaining-annotations1LINQ to XML: How to clone nodes while retaining annotations?Matt Howells2009-11-20T17:46:15Z2009-11-20T17:55:07Z
<p>Try this:</p>
<pre><code>var doc1 = XDocument.Load(@"C:\any.xml", LoadOptions.SetLineInfo);
var doc2 = new XDocument(doc1);
</code></pre>
<p>doc2 no longer has any line number information. Digging in with Reflector, I can see that when the nodes are cloned from doc1 to doc2 this does not preserve the annotations on the XObject base type, which includes the line number information accessible via <code>IXmlLineInfo</code>. Nor does it retain the BaseUri, which I also need.</p>
<p>Any ideas how I can clone the document while preserving line numbers? I found <a href="http://blogs.msdn.com/mikechampion/archive/2006/09/10/748408.aspx" rel="nofollow">this</a> but it doesn't preserve BaseUri and is a bit of a hack.</p>
http://stackoverflow.com/questions/1716484/how-to-touch-a-file-in-c2How to touch a file in C#?Matt Howells2009-11-11T16:43:02Z2009-11-11T16:46:10Z
<p>In C#, what's the simplest/safest/shortest way to make a file appear as though it has been modified (i.e. its last modified date) without changing the contents of the file?</p>
http://stackoverflow.com/questions/1716484/how-to-touch-a-file-in-c/1716498#17164984Answer by Matt Howells for How to touch a file in C#?Matt Howells2009-11-11T16:44:19Z2009-11-11T16:44:19Z<pre><code>System.IO.File.SetLastWriteTimeUtc(fileName, DateTime.UtcNow);
</code></pre>
http://stackoverflow.com/questions/780739/deserialize-object-into-assembly-that-is-now-signed-and-versioned/1709088#17090882Answer by Matt Howells for Deserialize object into assembly that is now signed and versionedMatt Howells2009-11-10T16:08:54Z2009-11-11T09:13:41Z<p>You can use a <code>SerializationBinder</code> to solve this:</p>
<pre><code>private class WeakToStrongNameUpgradeBinder : SerializationBinder
{
public override Type BindToType(string assemblyName, string typeName)
{
try
{
//Get the name of the assembly, ignoring versions and public keys.
string shortAssemblyName = assemblyName.Split(',')[0];
var assembly = Assembly.Load(shortAssemblyName);
var type = assembly.GetType(typeName);
return type;
}
catch (Exception)
{
//Revert to default binding behaviour.
return null;
}
}
}
</code></pre>
<p>Then</p>
<pre><code>var formatter = new BinaryFormatter();
formatter.Binder = new WeakToStrongNameUpgradeBinder();
</code></pre>
<p>Voila, your old serialized objects can be deserialized with this formatter. If the type have also changed you can use a <code>SerializationSurrogate</code> to deserialize the old types into your new types.</p>
<p>As others have mentioned, doing your own serialization rather than relying on <code>IFormatter</code> is a good idea as you have much more control over versioning and serialized size.</p>
http://stackoverflow.com/questions/1688458/validating-against-generated-xsd-files-in-visual-studio0Validating against generated xsd files in Visual StudioMatt Howells2009-11-06T15:51:30Z2009-11-06T15:51:30Z
<p>I have around twenty XML files in various Visual Studio 2008 projects, each of which both defines certain objects and refers to objects in the file and other files.
e.g.</p>
<p><code><some_object name="a" /></code></p>
<p><code><some_object name="b"><refers_to ref="a" /></some_object></code></p>
<p>Files refer to other files using custom <code><include file="blah.xml" /></code> elements, rather than using XInclude (which has no support in .Net) or !ENTITY (which doesn't allow the referred to files to be well-formed documents in their own right).</p>
<p>I have created a .xsd schema generator which looks through all the object definitions in the files and produces a .xsd schema file which can then be used to validate that all the object definitions refer to objects that exist. I then include that schema in all the files using <code>xsi:noNamespaceSchemaLocation="generated.xsd"</code>.</p>
<p>I've set up the solution to generate the xsd from all the xml files when it compiles and copy the file into the folders containing the xml. The intention is that <code>xsi:noNamespaceSchemaLocation="generated.xsd"</code> will now refer to that locally copied file and it should all validate nicely.</p>
<p>The problem I am having is that Visual Studio fails to apply the schema to the files so I get no intellisense during editing. It seems that Visual Studio keeps caching the xsd file every time it is copied. If I look at the Xml->Schemas... menu then generated.xsd appears multiple times, apparently unused. If I manually remove all references to the schema in that window, then Visual Studio seems to use the local file and starts working properly again.</p>
<p>I cannot merge all the files into one file which would permit the use of <code>xsi:keyref</code> to validate the referential integrity, because it would be too large to work with effectively, and the primary goal of the schema is to have the intellisense and edit-time checking when working with the files in VS.</p>
<p>Does anyone have any ideas about how I can solve this problem?</p>
http://stackoverflow.com/questions/1224452/processing-net-interop5Processing / .NET interop?Matt Howells2009-08-03T20:30:02Z2009-10-31T18:19:55Z
<p>I'd like to call into a .NET assembly for some data and library functions from a <a href="http://processing.org" rel="nofollow">Processing</a> user interface. What's the best way to achieve this? Expose a web service? A <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer#RESTful%5Fweb%5Fservices" rel="nofollow">RESTful</a> API? Some godforsaken processing/Silverlight monstrosity?</p>
<p>Good ideas are welcome. </p>
http://stackoverflow.com/questions/3927/what-are-some-good-net-profilers/100490#10049014Answer by Matt Howells for What Are Some Good .NET Profilers?Matt Howells2008-09-19T08:29:08Z2009-10-26T13:47:55Z<p>I have used JetBrains dotTrace and Redgate ANTS extensively. They are fairly similar in features and price. They both offer useful performance profiling and quite basic memory profiling.</p>
<p>dotTrace integrates with Resharper, which is really convenient, as you can profile the performance of a unit test with one click from the IDE. However, dotTrace often seems to give spurious results (e.g. saying that a method took several years to run)</p>
<p>I prefer the way that ANTS presents the profiling results. It shows you the source code and to the left of each line tells you how long it took to run. dotTrace just has a tree view.</p>
<p>EQATEC profiler is quite basic and requires you to compile special instrumented versions of your assemblies which can then be run in the EQATEC profiler. It is, however, free.</p>
<p>Overall I prefer ANTS for performance profiling, although if you use Resharper then the integration of dotTrace is a killer feature and means it beats ANTS in usability.</p>
<p>The free Microsoft CLR Profiler is all you need for .NET memory profiling.</p>
http://stackoverflow.com/questions/111676/unit-testing-a-multithreaded-application/111778#1117784Answer by Matt Howells for Unit testing a multithreaded application?Matt Howells2008-09-21T19:09:47Z2009-10-06T12:22:59Z<p>If you have to test that a background thread does something, a simple technique I find handy is to to have a WaitUntilTrue method, which looks something like this:</p>
<pre><code>bool WaitUntilTrue(Func<bool> func,
int timeoutInMillis,
int timeBetweenChecksMillis)
{
Stopwatch stopwatch = Stopwatch.StartNew();
while(stopwatch.ElapsedMillis < timeoutInMillis)
{
if (func())
return true;
Thread.Sleep(timeBetweenChecksMillis);
}
return false;
}
</code></pre>
<p>Used like this:</p>
<pre><code>volatile bool backgroundThreadHasFinished = false;
//run your multithreaded test and make sure the thread sets the above variable.
Assert.IsTrue(WaitUntilTrue(x => backgroundThreadHasFinished, 1000, 10));
</code></pre>
<p>This way you don't have to sleep your main testing thread for a long time to give the background thread time to finish. If the background doesn't finish in a reasonable amount of time, the test fails.</p>
http://stackoverflow.com/questions/1171521/linear-regression-confidence-intervals-in-sql3Linear regression confidence intervals in SQLMatt Howells2009-07-23T12:52:50Z2009-09-15T05:54:38Z
<p>I'm using some fairly straight-forward SQL code to calculate the coefficients of regression (intercept and slope) of some (x,y) data points, using least-squares. This gives me a nice best-fit line through the data. However we would like to be able to see the 95% and 5% confidence intervals for the line of best-fit (the curves below).</p>
<p><img src="http://www.curvefit.com/2a03be60.gif" alt="link text" /></p>
<p>What these mean is that the true line has 95% probability of being below the upper curve and 95% probability of being above the lower curve. How can I calculate these curves? I have already read wikipedia etc. and done some googling but I haven't found understandable mathematical equations to be able to calculate this.</p>
<p>Edit: here is the essence of what I have right now.</p>
<pre><code>--sample data
create table #lr (x real not null, y real not null)
insert into #lr values (0,1)
insert into #lr values (4,9)
insert into #lr values (2,5)
insert into #lr values (3,7)
declare @slope real
declare @intercept real
--calculate slope and intercept
select
@slope = ((count(*) * sum(x*y)) - (sum(x)*sum(y)))/
((count(*) * sum(Power(x,2)))-Power(Sum(x),2)),
@intercept = avg(y) - ((count(*) * sum(x*y)) - (sum(x)*sum(y)))/
((count(*) * sum(Power(x,2)))-Power(Sum(x),2)) * avg(x)
from #lr
</code></pre>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1393350/abstract-class-mandatory-constructor-for-child-classes/1393372#13933725Answer by Matt Howells for Abstract class > mandatory constructor for child classesMatt Howells2009-09-08T11:05:40Z2009-09-08T11:14:46Z<p>You cannot.</p>
<p>However, you could set a single constructor on the FatherClass like so:</p>
<pre><code>protected FatherClass(string val1, string val2) {}
</code></pre>
<p>Which forces subclasses to call this constructor - this would 'encourage' them to provide a <code>string val1, string val2</code> constructor, but does not mandate it.</p>
<p>I think you should consider looking at the <a href="http://dofactory.com/Patterns/PatternAbstract.aspx" rel="nofollow">abstract factory</a> pattern instead. This would look like this:</p>
<pre><code>interface IFooFactory {
FatherClass Create(string val1, string val2);
}
class ChildClassFactory : IFooFactory
{
public Create(string val1, string val2) {
return new ChildClass(val1, val2);
}
</code></pre>
<p>Wherever you need to create an instance of a subclass of FatherClass, you use an IFooFactory rather than constructing directly. This enables you to mandate that <code>(string val1, string val2)</code> signature for creating them.</p>
http://stackoverflow.com/questions/102064/clock-drift-on-windows1Clock drift on WindowsMatt Howells2008-09-19T14:04:49Z2009-09-04T08:51:22Z
<p>I've developed a Windows service which tracks business events. It uses the Windows clock to timestamp events. However, the underlying clock can drift quite dramatically (e.g. losing a few seconds per minute), particularly when the CPUs are working hard. Our servers use the Windows Time Service to stay in sync with domain controllers, which uses NTP under the hood, but the sync frequency is controlled by domain policy, and in any case even syncing every minute would still allow significant drift. Are there any techniques we can use to keep the clock more stable, other than using hardware clocks?</p>
http://stackoverflow.com/questions/1366450/enable-foreach-for-a-class-derived-from-dictionary/1366471#13664712Answer by Matt Howells for Enable foreach for a class derived from DictionaryMatt Howells2009-09-02T08:34:25Z2009-09-02T08:34:25Z<p>I suggest that rather than inheriting from Dictionary you wrap it. A HashSet is not a Dictionary.</p>
http://stackoverflow.com/questions/1335586/good-case-for-interfaces/1335638#13356382Answer by Matt Howells for Good Case For InterfacesMatt Howells2009-08-26T15:37:22Z2009-08-26T15:37:22Z<ul>
<li>You can implement multiple interfaces. You cannot inherit from multiple classes.</li>
<li>..that's it. The points others are making about code decoupling and test-driven development don't get to the crux of the matter because you can do those things with abstract classes too.</li>
</ul>
http://stackoverflow.com/questions/1327319/which-loop-to-use-for-or-do-while/1327338#13273383Answer by Matt Howells for Which loop to use, for or do/while?Matt Howells2009-08-25T10:20:10Z2009-08-25T10:20:10Z<pre><code>for (int iLoop = 0; iLoop < int.MaxValue && !Criteria; iLoop++) {
//Do work here...
}
</code></pre>
http://stackoverflow.com/questions/1327293/how-to-store-a-factory-used-in-a-derived-class-to-initialize-its-base-class/1327327#13273271Answer by Matt Howells for How to store a factory used in a derived class to initialize its base class?Matt Howells2009-08-25T10:18:14Z2009-08-25T10:18:14Z<p>Why should a class deriving from <code>Fooificator</code> be responsible for constructing a <code>Resource</code>? Why can't you just inject this dependency into its constructor?</p>
<pre><code>public class DefaultFooificator : Fooificator
{
public DefaultFooificator(Resource resource) : base(resource) {}
}
</code></pre>
<p>You could defer the creation of the resource to a <code>FooificatorFactory</code>.</p>
http://stackoverflow.com/questions/1265569/in-net-c-is-null-strongly-typed6In .Net/C#, is null strongly-typed?Matt Howells2009-08-12T11:25:42Z2009-08-19T00:34:03Z
<p>Does <code>null</code> have a type? How is a null value represented internally? What is happening in the following code?</p>
<pre><code>void Foo(string bar) {...}
void Foo(object bar) {...}
Foo((string)null);
</code></pre>
<p>Edit: The answers so far have been unspecific and too high-level. I understand that a reference type object consists of a pointer on the stack which points to a location on the heap which contains a sync block index, a type handle and the object's fields. When I set an instance of an object to <code>null</code>, where does the pointer on the stack point to, exactly? And in the code snippet, is the cast simply used by the C# compiler to decide which overload to call, and there is not <em>really</em> any casting of null going on?</p>
<p>I am looking for an in-depth answer by someone who understands the CLR internals.</p>
http://stackoverflow.com/questions/1276650/fastest-way-to-move-a-part-of-an-array-to-the-right/1276692#12766921Answer by Matt Howells for Fastest way to move a part of an array to the rightMatt Howells2009-08-14T08:34:51Z2009-08-14T08:34:51Z<p>First I would question whether an array is an appropriate data structure choice given this requirement. However, I can see a possible optimisation in your 'element by element' copying code:</p>
<pre><code> private static void ElementByElement2<T>(T[] arg, int start)
{
int i = arg.Length - 1;
while (i > start)
arg[i] = arg[--i];
}
</code></pre>
<p>I have benchmarked this and is approximately twice as fast as your for-loop solution.</p>
http://stackoverflow.com/questions/1273001/net-is-there-a-hasnext-method-for-an-ienumerator/1273046#12730460Answer by Matt Howells for .NET: is there a "HasNext" method for an IEnumerator ?Matt Howells2009-08-13T16:20:03Z2009-08-13T16:20:03Z<p><a href="http://msdn.microsoft.com/en-us/library/system.collections.ienumerator%5Fmembers.aspx" rel="nofollow">Nope</a>, just <code>MoveNext</code>, <code>Reset</code> and <code>Current</code>.</p>
http://stackoverflow.com/questions/1271618/how-to-store-linear-range-of-values-which-data-structure-to-choose/1271679#12716793Answer by Matt Howells for How to store linear range of values? Which Data structure to choose?Matt Howells2009-08-13T12:35:55Z2009-08-13T12:50:36Z<p>I think an array is an elegant solution in this case, assuming you don't need the prefixes for polygons with more than 20 sides:</p>
<pre><code>NSArray *greekPrefixes = [[NSArray alloc] initWithObjects:
@"an", @"mono", @"di", @"tri", @"tetra", @"penta", @"hexa", @"hepta", @"octa",
@"ennea", @"deca", @"hendeca", @"dodeca", @"triskaideca", @"tetrakaideca",
@"pentakaideca", @"hexakaideca", @"heptakaideca", @"octakaideca",
@"enneakaideca", @"icosa", nil];
</code></pre>
<p>The string at index <code>i</code> is the greek prefix for the number <code>i</code>.</p>
<p>And yes, a polygon with zero sides is an angon :)</p>
http://stackoverflow.com/questions/1270986/do-pdbs-slow-down-a-release-application3Do .pdbs slow down a release application?Matt Howells2009-08-13T09:31:34Z2009-08-13T10:52:08Z
<p>If a .pdb (program debug) file is included with a .dll then line numbers appear in the stack trace of any exception thrown. Does this affect the performance of the application?</p>
<p><hr /></p>
<p>This question is not about release vs. debug, i.e. optimisations. It is about the performance implications of having .pdb files. Are the .pdb files read every time an exception is thrown? Is the information cached in some way when the assemblies are loaded? Or is it cached the first time a relevant exception is thrown? How much difference does it make?</p>
http://stackoverflow.com/questions/1270652/i-need-some-help-to-print-out-the-line-with-the-longest-length-the-line-with-the/1270705#12707054Answer by Matt Howells for I need some help to print out the line with the longest length, the line with the highest sum of ASCII values, or the line with the greatest number of words from a text fileMatt Howells2009-08-13T08:10:01Z2009-08-13T08:10:01Z<p>First work out how to open the file and read a line of text from the file to a string.</p>
<p>Read one line inside a loop and each time you loop work out the length of the string (easy), the number of words (split the string by the ' ' (space) character and count how many words you get) and the sum of the ASCII values (loop through each character in the string keeping a running total of the ascii value of each character).</p>
<p>Once you have your 3 values for the line you can see if they are bigger than any previously found values. You can do that by declaring some variables before the loop to hold the maximum value found so far, and then updating those variables whenever you find a bigger value. You will also need 3 variables to hold the strings which you have found to have the highest of those values.</p>
<p>When your loop finishes you will have read the whole file and found the 3 strings. Print them out.</p>
http://stackoverflow.com/questions/1840765/less-defined-generics-in-c/1840776#1840776Comment by Matt Howells on Less defined generics in c#?Matt Howells2009-12-03T16:25:17Z2009-12-03T16:25:17Z@David: Apparently not. With respect to Jon, whose answers are usually very good, some of his answers seem to get a lot of votes for having 100k+ rep next to them while better answers languish near the bottom of the page. I would even go so far as to say that Jon answering a question might discourage others from answering who are motivated by the reputation system.http://stackoverflow.com/questions/1833054/how-can-i-format-a-nullable-datetime-with-tostring/1833060#1833060Comment by Matt Howells on How can I format a nullable DateTime with ToString()?Matt Howells2009-12-02T14:32:39Z2009-12-02T14:32:39ZThis will <i>still</i> throw an exception if dt2 has no value - as opposed to being null.http://stackoverflow.com/questions/1833054/how-can-i-format-a-nullable-datetime-with-tostring/1833060#1833060Comment by Matt Howells on How can I format a nullable DateTime with ToString()?Matt Howells2009-12-02T14:04:22Z2009-12-02T14:04:22ZThis will throw an exception if dt2 has no value.http://stackoverflow.com/questions/1825304/return-null-for-firstordefault-on-empty-ienumerableint/1825335#1825335Comment by Matt Howells on Return null for FirstOrDefault() on empty IEnumerable<int>?Matt Howells2009-12-01T12:06:16Z2009-12-01T12:06:16ZYou cannot define the default value returned by FirstOrDefault - it returns either the first element from the enumerable, or if none exists, the result of <code>default(T)</code>.http://stackoverflow.com/questions/1825304/return-null-for-firstordefault-on-empty-ienumerableint/1825335#1825335Comment by Matt Howells on Return null for FirstOrDefault() on empty IEnumerable<int>?Matt Howells2009-12-01T12:02:15Z2009-12-01T12:02:15ZCast() does not cast them all - it only casts them as you enumerate. So this code will cast either zero or one ints - not much of a performance hit.http://stackoverflow.com/questions/600293/how-to-check-if-a-number-is-a-power-of-2/600306#600306Comment by Matt Howells on How to check if a number is a power of 2Matt Howells2009-11-26T16:33:58Z2009-11-26T16:33:58ZI am amazed that this is accepted and highly rated. This is wrong. It claims that zero is a power of two.http://stackoverflow.com/questions/565564/c-alternative-to-generictype-null/565619#565619Comment by Matt Howells on C#: Alternative to GenericType == nullMatt Howells2009-11-26T16:26:23Z2009-11-26T16:26:23ZSee Jason's answer for a one-liner that doesn't need boxing.http://stackoverflow.com/questions/565564/c-alternative-to-generictype-null/1477961#1477961Comment by Matt Howells on C#: Alternative to GenericType == nullMatt Howells2009-11-25T14:43:22Z2009-11-25T14:43:22ZIt doesn't compile. <code>Cannot apply operator '==' to operands of type 'T' and 'T'</code>http://stackoverflow.com/questions/565564/c-alternative-to-generictype-null/1477906#1477906Comment by Matt Howells on C#: Alternative to GenericType == nullMatt Howells2009-11-25T14:40:38Z2009-11-25T14:40:38ZWhat if the method is generic but the class is not?http://stackoverflow.com/questions/1782822/how-to-convert-string-brakemeup-in-to-charstringlength-array/1782834#1782834Comment by Matt Howells on How to convert string "brakemeup" in to char[stringlength] array?Matt Howells2009-11-23T13:31:39Z2009-11-23T13:31:39ZBear in mind you can access the characters of a string by index using <code>stringX[i]</code>, so creating a new char array is often unnecessary.http://stackoverflow.com/questions/1782927/why-i-cannot-derive-from-long/1782940#1782940Comment by Matt Howells on Why I cannot derive from long?Matt Howells2009-11-23T12:58:18Z2009-11-23T12:58:18ZCreate a new type which wraps a long field. See Bojan Resnik's answer.http://stackoverflow.com/questions/1772156/linq-to-xml-how-to-clone-nodes-while-retaining-annotationsComment by Matt Howells on LINQ to XML: How to clone nodes while retaining annotations?Matt Howells2009-11-23T11:06:28Z2009-11-23T11:06:28ZI have gotten around this in my particular case by keeping a reference to the original XDocument which is never modified and just used to look up line numbers and BaseUris.http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer/109025#109025Comment by Matt Howells on Best algorithm to count the number of set bits in a 32-bit integer?Matt Howells2009-11-23T09:29:14Z2009-11-23T09:29:14ZIt's write-only code. Just put a comment that you are not meant to understand or maintain this code, just worship the gods that revealed it to mankind. I am not one of them, just a prophet. :)http://stackoverflow.com/questions/1772156/linq-to-xml-how-to-clone-nodes-while-retaining-annotations/1772230#1772230Comment by Matt Howells on LINQ to XML: How to clone nodes while retaining annotations?Matt Howells2009-11-20T22:16:37Z2009-11-20T22:16:37ZThat would still lose the original BaseUri and line number information, I'm afraid.http://stackoverflow.com/questions/1688458/validating-against-generated-xsd-files-in-visual-studioComment by Matt Howells on Validating against generated xsd files in Visual StudioMatt Howells2009-11-13T16:16:09Z2009-11-13T16:16:09ZSweet - earned the 'Tumbleweed' badge :)