Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

All Tags » .NET FW & Runtime   (RSS)
Sorry, but there are no more tags available to filter with.

Here's .NET framework 3.0

WinFX will hence be called .NET Framework 3.0. Read more about this at Soma 's blog and find answers to some questions on this at jasonz 's blog. Soma is the VP of Dev Div and Jason is the GM for the .NET FW – Dev FX group. So please let them have your
Posted by seshadripv | 3 Comments
Filed under:

Power Toys - Develop Applications for .NET Framework 1.1 using Visual Studio 2005

I had earlier blogged about not being able to develop applications for .NET Framework 1.1 using Visual Studio 2005. Now there is some great news on this. As part of the Microsoft’s Shared Source initiative ‘PowerToys V 1.0’ for VisualStudio 2005 was released
Posted by seshadripv | 0 Comments
Filed under:

System.FormatException while parsing a string containing valid integer values

Trying to convert a value to an integer using the Parse function might throw a "System.FormatException" with the following following call stack. Unhandled Exception: System.FormatException: Input string was not in a correct format. at System.Number.StringToNumber(String
Posted by seshadripv | 2 Comments
Filed under:

Auto increment the build number in the 'AssemblyVersion'

Q) How to auto-increment the build number of the ‘AssemblyVersion’ in a managed application? A) Locate the AssemblyInfo.cs (or VB) file and make the following change - [assembly: AssemblyVersion ("1.0.*")] – Voila!!! The assemblyversion should now automatically
Posted by seshadripv | 2 Comments
Filed under:

Serializing an object of the KeyValuePair Generic class

Consider the following piece of C# code running in .NET framework 2.0 static void Main(string[] args) { List < KeyValuePair < string , int >> foobar = new List < KeyValuePair < string , int >>(); foobar.Add( new KeyValuePair <
Posted by seshadripv | 3 Comments
Filed under:

5 quick questions on Custom Attributes

1) What are custom attributes? Attributes are instances of a Type. Attributes are just like any other class object except that they allow some special syntax. 2) Are attributes an alternate way of specifying a base class for a class? Inside an attributed
Posted by seshadripv | 1 Comments
Filed under:
 
Page view tracker