Matt Howells

7,648
reputation
331 views

Registered User

name Matt Howells
member for 1 year
seen Dec 15 at 15:40
website
location London, UK
age 33
I'm a freelance software developer specialising in .Net development for the investment banking industry.
Dec
14
awarded  Guru
Dec
9
revised Is there a zip-like method in .Net?
reduced code size using var
Dec
9
revised Is there a zip-like method in .Net?
fixed typo in code
Dec
6
awarded  Mortarboard
Dec
3
comment Less defined generics in c#?
@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.
Dec
2
comment How can I format a nullable DateTime with ToString()?
This will still throw an exception if dt2 has no value - as opposed to being null.
Dec
2
revised How can I format a nullable DateTime with ToString()?
added 284 characters in body
Dec
2
comment How can I format a nullable DateTime with ToString()?
This will throw an exception if dt2 has no value.
Dec
2
answered How can I format a nullable DateTime with ToString()?
Dec
1
accepted Return null for FirstOrDefault() on empty IEnumerable<int>?
Dec
1
comment Return null for FirstOrDefault() on empty IEnumerable<int>?
You cannot define the default value returned by FirstOrDefault - it returns either the first element from the enumerable, or if none exists, the result of default(T).
Dec
1
comment Return null for FirstOrDefault() on empty IEnumerable<int>?
Cast() 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.
Dec
1
revised Return null for FirstOrDefault() on empty IEnumerable<int>?
code typo
Dec
1
answered Return null for FirstOrDefault() on empty IEnumerable<int>?
Dec
1
revised ClassName<Type.GetType(”Somenamespace.ClassName”)>
added 134 characters in body; added 18 characters in body
Nov
30
awarded  Nice Question
Nov
27
accepted How to find if a value is in an array in Visual C#
Nov
27
revised How to find if a value is in an array in Visual C#
added 65 characters in body; added 119 characters in body
Nov
27
answered How to find if a value is in an array in Visual C#
Nov
26
answered How to check if a number is a power of 2
Nov
26
comment How to check if a number is a power of 2
I am amazed that this is accepted and highly rated. This is wrong. It claims that zero is a power of two.
Nov
26
comment C#: Alternative to GenericType == null
See Jason's answer for a one-liner that doesn't need boxing.
Nov
25
comment C#: Alternative to GenericType == null
It doesn't compile. Cannot apply operator '==' to operands of type 'T' and 'T'
Nov
25
comment C#: Alternative to GenericType == null
What if the method is generic but the class is not?
Nov
23
comment How to convert string “brakemeup” in to char[stringlength] array?
Bear in mind you can access the characters of a string by index using stringX[i], so creating a new char array is often unnecessary.
Nov
23
answered C#: Unit testing of child classes
Nov
23
comment Why I cannot derive from long?
Create a new type which wraps a long field. See Bojan Resnik's answer.
Nov
23
comment LINQ to XML: How to clone nodes while retaining annotations?
I 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.
Nov
23
comment Best algorithm to count the number of set bits in a 32-bit integer?
It'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. :)
Nov
20
comment LINQ to XML: How to clone nodes while retaining annotations?
That would still lose the original BaseUri and line number information, I'm afraid.
Nov
20
asked LINQ to XML: How to clone nodes while retaining annotations?
Nov
13
comment Validating against generated xsd files in Visual Studio
Sweet - earned the 'Tumbleweed' badge :)
Nov
13
comment What is the correct way to compare char ignoring case?
It's dangerous to assume that the char comparison by subtraction will continue to be correct in future CLR versions, so I would use return Char.ToUpper(x, ci).CompareTo(Char.ToUpper(y, ci)); instead.
Nov
13
awarded  Tumbleweed
Nov
12
comment How to touch a file in C#?
@Josh, I do not need the rep, it is a genuine question. After asking the question I worked out a way to do it and posted my solution. If you know of a better way please post your answer.
Nov
11
answered How to touch a file in C#?
Nov
11
asked How to touch a file in C#?
Nov
11
revised Deserialize object into assembly that is now signed and versioned
added 402 characters in body
Nov
10
answered Deserialize object into assembly that is now signed and versioned
Nov
9
awarded  Nice Answer
Nov
6
accepted Why doesn’t IEnumerable<T>.Max constrain T to be IComparable?
Nov
6
comment Why doesn’t IEnumerable<T>.Max constrain T to be IComparable?
@Eric: +1, but I wish you had posted an answer so I could accept it.
Nov
6
asked Validating against generated xsd files in Visual Studio
Oct
29
comment What is the best Battleship AI?
What about the usual rule that ships cannot be placed adjacent to each other?
Oct
26
revised What Are Some Good .NET Profilers?
added 310 characters in body
Oct
19
revised Developing the true mind
edited tags
Oct
19
revised XSLT Set difference but matching on a subsection of the node
fixed typos
Oct
15
awarded  Nice Answer
Oct
6
revised Unit testing a multithreaded application?
deleted 23 characters in body
Sep
30
awarded  Popular Question