Welcome to Geekdojo
Sign in
|
Join
|
Help
byte-wise
Richard Hsu's blog
This Blog
About
Email
Calendar
Dec
January 2009
Feb
S
M
T
W
T
F
S
28
29
30
31
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
Search
Go
Syndication
RSS 2.0
Atom 1.0
Archives
August 2006 (3)
July 2006 (1)
June 2006 (1)
April 2006 (1)
March 2006 (1)
January 2006 (1)
July 2005 (1)
January 2005 (1)
November 2004 (1)
October 2004 (1)
September 2004 (1)
August 2004 (3)
July 2004 (3)
June 2004 (1)
March 2004 (1)
February 2004 (1)
January 2004 (3)
November 2003 (15)
October 2003 (1)
Navigation
Blogs
Photos
Post Categories
.NET v2 (4)
About Me (1)
ASP.NET - C# (4)
Blogging (2)
C# (11)
General (15)
Office - VBA (2)
WinForms - C# (3)
My Links
My Onine Bookmarks
KolkataNet (.NET User Group)
Stuff I use
Gemini Bug Tracking
Mozilla Firefox
WordWeb Dictionary
AVG Anti-virus [Grisoft]
iTunes
Zone Alarm Firewall
CodeSmith
GIMP [Image Editor]
Google Picasa
Free Download Manager
.NET v2
(RSS)
All things whidbey
Saturday, April 22, 2006 3:36 AM
creating string list - why Python is healthier than C#
I needed a string array, so I go string[] tags = new string[] {"python", "ruby", "good"}; but I also need to search for a particular string.. to get IndexOf(...) functionality, I change it to [C# v2] List<string> tags = new List<string>(new
posted by
richardhsu
|
1 Comments
Filed Under:
C#
,
.NET v2
Saturday, July 16, 2005 3:31 PM
XmlWriterSettings.Encoding vs. XmlWriter.WriteProcessingInstruction
I was using XmlWriter [using .NET v2 beta2] to write xml to a stream. The thing I had to write was like :- <?xml version="1.0" encoding="UTF-8" standalone="yes"?><entry xmlns="http://purl.org/atom/ns#">...</entry> to write out the
posted by
richardhsu
|
1913 Comments
Filed Under:
.NET v2
Tuesday, August 10, 2004 8:59 PM
Assembly References : Need to select all of them ?
I tried a simple database query using SqlConnection, SqlCommand & SqlDataReader with VC++ 2005 Express but it wasn't compiling giving the messages part of which says :- "error C3624: 'System::EnterpriseServices::ITransaction': the compiler cannot
posted by
richardhsu
|
2 Comments
Filed Under:
.NET v2
Tuesday, August 10, 2004 4:08 PM
Finally got my hands on Whidbey - will start Express(sing) myself
Yesterday spent the whole day downloading VC++ .NET Express, the 'downloading' finally completed near midnight, and then the installation started. .NET v2 runtime got installed quickly, but the setup of VC++ Express was very very slow,
posted by
richardhsu
|
1 Comments
Filed Under:
.NET v2