Tim Ng

F# for the masses

March, 2008

Posts
  • Tim Ng

    VB expression trees - coalesce operator

    • 4 Comments
    Hey there! In this post, I'll continue describing some of the things that are interesting about the VB compiler, especially related to expression trees and the consumption of expression trees in your LINQ provider. Again, this may not be too interesting...
  • Tim Ng

    Checking generic parameters for Nothing/null

    • 1 Comments
    Consider the following code fragment: Module Module1 Sub Foo(Of T)( ByVal x As T) If x Is Nothing Then End If End Sub Sub Main() Foo(10) End Sub End Module The first thing you might ask is : "hey, how come the compiler allows me to check for Nothing...
Page 1 of 1 (2 items)