Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Luca Bolognese's WebLog
x += x++;
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Go
Tags
.NET Futures
Books
C# Programming
F#
Financial
Miscellanea
Object Orientation
Sport
Archives
September 2008 (1)
August 2008 (1)
July 2008 (1)
June 2008 (1)
April 2008 (3)
March 2008 (1)
January 2008 (2)
December 2007 (5)
November 2007 (1)
August 2007 (5)
July 2007 (1)
June 2007 (3)
May 2007 (2)
April 2007 (2)
February 2007 (3)
January 2007 (3)
July 2005 (1)
April 2005 (1)
March 2005 (2)
February 2005 (2)
January 2005 (3)
August 2004 (7)
July 2004 (5)
Bloggers
Matt Warren
Andy Conrad
Eric Gunnerson
Dinesh Kulkarni
Who am I (really)?
The author
January 2005 - Posts
Thursday, January 27, 2005 7:54
Nullable trilogy part II: a == b -> a>=b && a <=b ?
A question that often comes up when we discuss Nullable<T> is about the anti-symmetric property. This property states that if a==b then a>=b and a<=b. If a and b are null then this property is not satisfied in the current design as the result
Posted by
lucabol
|
3 Comments
Filed under:
C# Programming
Monday, January 24, 2005 9:49
New C# things happening...
Express yourself about this DCR: http://blogs.msdn.com/scottno/archive/2005/01/19/356347.aspx Partecipate to the C# language chat: http://blogs.msdn.com/scottno/archive/2005/01/19/356358.aspx That's it.
Posted by
lucabol
|
0 Comments
Filed under:
C# Programming
Thursday, January 20, 2005 9:41
Nullable
trilogy Part I: why not just SQL?
This is the first of a weekly three part serie of posts about Nullable<T>. In these posts I want to describe the reasons behind three design choices: 1. Why not just use SQL semantics for null? 2. Why null == null doesn't imply null >= null and
Posted by
lucabol
|
3 Comments
Filed under:
C# Programming