Mike Thompson

2,297
Reputation
188 views

Registered User

Name Mike Thompson
Member for 1 year
Seen 2 hours ago
Website
Location Melbourne, Australia
Age
Oct
8
awarded  Notable Question
Oct
8
asked iPhone UI controls for WinForms
Sep
11
answered What are the benefits of covariance and contravariance?
Sep
11
answered Covariance and contravariance in programming languages
Sep
11
answered C#-Array Covariance In Generic Classes
Sep
5
revised Hierarchical queries in LINQ
added 267 characters in body; added 212 characters in body
Sep
4
answered Why is squaring a number faster than multiplying two random numbers?
Sep
4
asked Hierarchical queries in LINQ
Sep
3
accepted Capturing a repeated group
Sep
3
comment Generic method overloading compilation error in VB
Jeff, thanks for restoring my original generic code.
Sep
3
comment Generic method overloading compilation error in VB
This gets around the compiler error, but the call to SetValue inside Test2 resolves to the wrong overload. Good try though! I thought the problem was solved when it compiled correctly.
Sep
3
awarded  Scholar
Aug
25
awarded  Yearling
Aug
20
comment Why use TryCast instead of Directcast ?
However, TryCast is not identical to C#'s "as". TryCast only works with reference types, whereas "as" handles value types. See my question on this issue (stackoverflow.com/questions/1297297/…)
Aug
19
comment Differences between VB TryCast and C# “as” operator when using LINQ
Both of these give me a "Unsupported overload used for query operator 'DefaultIfEmpty'" error. Is something missing?
Aug
19
comment Differences between VB TryCast and C# “as” operator when using LINQ
Unfortunately, this does not have the correct query plan (according to LINQPad). It retrieves all the rows and performs the Max aggregation in memory.
Aug
19
comment Differences between VB TryCast and C# “as” operator when using LINQ
Yes, this is LINQ to SQL. If I use DirectCast I get a compile error. Only CType works.
Aug
19
comment Differences between VB TryCast and C# “as” operator when using LINQ
Correction. Unfortunately, this does not work. It thinks the result is Integer, not Integer? When the query returns no rows I get an InvalidCast exception.
Aug
19
comment Differences between VB TryCast and C# “as” operator when using LINQ
So simple! I thought I played around with doing an outer cast, but I didn't quite hit upon the right syntax.
Aug
19
asked Differences between VB TryCast and C# “as” operator when using LINQ
Aug
10
revised Using hardlinks when cloning a Mercurial repository under Windows
edited tags
Aug
7
comment Using hardlinks when cloning a Mercurial repository under Windows
I am trying to improve the performance of cloning a repository. Since hardlinks only increase the reference count of a file, cloning a repository becomes a fairly cheap operation in terms of disk space & creation time.
Aug
7
asked Using hardlinks when cloning a Mercurial repository under Windows
Aug
5
comment Generic method overloading compilation error in VB
I have tried it in VS2005 & VS2010 Beta 1 with the same result. I assume VS2008 will be the same.
Aug
5
asked Generic method overloading compilation error in VB
Jun
18
comment Calling a method on a generic base class created with Activator.CreateInstance
In my real code the Foo method is generic (it instantiates a T object -- it does not have any parameters of T or return a T). So the interface technique works even though Foo is generic.
Jun
18
revised Calling a method on a generic base class created with Activator.CreateInstance
edited title
Jun
18
comment Calling a method on a generic base class created with Activator.CreateInstance
I thought of interfaces, but didn't mention this is my question. It might be the most elegant solution.
Jun
18
asked Calling a method on a generic base class created with Activator.CreateInstance