Visual studio 2010 is great IDE and i am discovering everyday some thing new. Today i have discovered one of fantastic option to increase performance of your visual studio IDE. Visual Studio 2010 has option when we enabled it it will automatically adjust the visual and client experience as per your...
Saturday, March 20, 2010
Indexer class in C#
While taking interviews for Microsoft.NET i often ask about indexer classes in C#.NET and i found that most of people are unable to give answer that how we can create a indexer class in C#.NET. We know the array in C#.NET and each element in array can be accessed by index same way for indexer class...
Microsoft.NET 4.0/VB.NET 10 Automatic Properties
Posted by Jalpesh Vadgama |
March 20, 2010 |
.NET4.0, ASP.NET, C#-4.0, C#.NET, VB.NET, VisualStudio |
No comments
In C# we are having automatic properties since C# 3.5 framework but now with Microsoft.NET 4.0 Framework VB.NET 10.0 version we are also having automatic properties for VB.NET Also. Like in C# we can define automatic like following. Public string TestProperty{get;set;}Same way we can define in automatic...