Welcome to Geekdojo Sign in | Join | Help

March 2004 - Posts

An explicit call to a struct method, even if it overrides an object method, will not implicitly box.  However, consider this case: static void Main() { int i=65536; Console.WriteLine("This is boxed: {0}", i); Console.WriteLine("This Read More
I needed string.Format in SQL just now, so I made it up (not very exciting but nicer than writing nested REPLACE statements. YMMV   DROP FUNCTION dbo.fnFormatString GO CREATE FUNCTION dbo.fnFormatString(@format varchar(6000), @arg1 sql_variant, Read More
This is a great new article. Of special note is the little Whidbey note at the bottom: Delegates have been optimized and, if I'm reading the chart right, will be about 3 times faster :)   Read More
Poster #1 (talking about some C# beginner complaining): Last time I saw your post you were complaining that you actually had towrite some code...  Did you expect to write something like:public MyApp(){    Create.MyPerfectApplication();} Read More