Welcome to Geekdojo Sign in | Join | Help

.NET v2 (RSS)

All things whidbey

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: ,

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:

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:

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: