Sign in
|
Join
|
Help
Raistlin's Spellbook
Tips and Thoughts on programming and the programmer's life
This Blog
Home
Contact
Syndication
RSS for Posts
Atom
RSS for Comments
Search
Go
Tags
.NET
.NET 1.1
C#
General
Visual Studio
Community
Home
Blogs
Media
Forums
Groups
DevCast
Email Notifications
Go
Archives
May 2007 (3)
February 2007 (3)
January 2007 (1)
November 2006 (4)
Browse by Tags
All Tags
»
.NET
(
RSS
)
.NET 1.1
C#
Visual Studio
Wednesday, May 30, 2007 3:41 PM
.NET: Passing a DataSet through the ExtendedProperties of another DataSet
Sometimes you find the need to pass more than one DataSet as the result of a routine/function. Although you can use reference parameters for doing so, there's another approach. You can pass additional DataSets by adding them to the ExtendedProperties...
Posted by
raistlin
| with
no comments
Filed under:
.NET
,
.NET 1.1
,
C#
Wednesday, May 30, 2007 3:35 PM
.NET: How to determine if a string comes before another string based on the dictionary order
Language: C# Usually string comparisons are needed just to determine the equality (or inequality) of 2 strings. However, there are times when determining inequality isn't the end in itself. Sometimes a developer also needs to know if a particular...
Posted by
raistlin
| with
no comments
Filed under:
.NET
,
.NET 1.1
,
C#
Wednesday, May 30, 2007 3:17 PM
.NET: Performing case-insensitive string comparison
Language: C# Performing string comparisons can be considered as one of the "common" tasks that a programmer needs to do and, more often than not, the comparisons need to be case-insensitive. The common method taught (or learned, as the case...
Posted by
raistlin
|
3 comment(s)
Filed under:
.NET
,
.NET 1.1
,
C#
Monday, February 12, 2007 3:01 PM
Making the LINQ (Preview) Project Templates appear in VS2005 (and other template "tricks")
I encountered this problem last week, wherein the LINQ project templates were missing in the "New Project" dialog of VS2005 Team System even after doing "everything" (machine reboot, "install IDE support", etc.). By searching the web (through the help...
Posted by
raistlin
|
3 comment(s)
Filed under:
.NET
,
Visual Studio
Monday, November 13, 2006 7:04 PM
.NET: How to determine if a variable can be converted to a particular type
Platform: .NET Framework Language: C# Using reflection, we can determine if a particular variable can be converted to another data type. This is useful if you're not sure if the conversion that you're about to perform is valid or not. Although this can...
Posted by
raistlin
|
6 comment(s)
Filed under:
.NET
,
.NET 1.1
,
C#