Welcome to Geekdojo
Sign in
|
Join
|
Help
Richard's C# blog
I refer you to the blog title
RSS 2.0
Atom 1.0
Home
About
Email
<
March 2004
>
Su
Mo
Tu
We
Th
Fr
Sa
29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
Search
Go
Archives
February 2008 (1)
June 2007 (2)
May 2007 (2)
September 2006 (2)
August 2006 (1)
March 2006 (1)
February 2006 (1)
November 2005 (1)
October 2005 (1)
May 2005 (1)
April 2005 (1)
March 2005 (2)
February 2005 (1)
January 2005 (1)
November 2004 (3)
October 2004 (1)
August 2004 (1)
July 2004 (1)
March 2004 (4)
February 2004 (5)
January 2004 (6)
December 2003 (9)
November 2003 (10)
October 2003 (7)
September 2003 (7)
News
<noscript>
</noscript>
OPML
Post Categories
.NET (52)
C# (50)
Canada (3)
Complex Adaptive Systems (7)
French (1)
Microsoft CRM (1)
Music (1)
Sql Server 2005 (2)
SSRS (0)
Theatre (1)
.NET
Ian Bretherton's Blog
Ryan Rinaldi's Blog
Ray Jezek's Blog
Ian Bretherton's Blog
Ryan Rinaldi's Blog
Ray Jezek's Blog
C#
The obligatory link to Eric Gunnerson's blog
The obligatory link to Eric Gunnerson's blog
March 2004 - Posts
A small point about boxing and value types
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
posted
Saturday, March 27, 2004 3:21 PM
by
richard
|
2 Comments
Filed Under:
.NET
,
C#
string.Format in SQL
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
posted
Thursday, March 25, 2004 7:52 PM
by
richard
|
2 Comments
Filed Under:
.NET
,
C#
Eric Gunnerson does Dynamic Code
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
posted
Wednesday, March 10, 2004 9:16 PM
by
richard
|
2 Comments
Filed Under:
.NET
,
C#
Overheard on microsoft.public.dotnet.languages.csharp...
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
posted
Wednesday, March 03, 2004 6:31 PM
by
richard
|
2 Comments
Filed Under:
C#