Welcome to MSDN Blogs Sign in | Join | Help

Wriju's BLOG

.NET and everything

October 2009 - Posts

Parallel Computing: The new “Task” API
Visual Studio 2010 has new API called “Task”. This helps us to create small pieces of work and execute in distributed manner under multi core machine. Unlike thread it has flexibility to adopt the lower number of CPU without changing code. With improved Read More...
Seven Things to Know about Windows 7
1) Simple to Use. The Snap feature arranges windows side-by-side by dragging programs. You can then pin your favorite programs to the Windows Taskbar. Finding often-used programs and files is easier with Windows 7. The streamlined user interface includes Read More...
Visual Studio 2010 Beta 2
I have installed the Beta 2 of Visual Studio 2010. I love its splash screen Go get it and enjoy!!! Find more information at http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx MSDN Subscribers: Download the Beta The Visual Studio 2010 and .NET Framework Read More...
VB.NET 10 : Array Literals
VB.NET has another exiting feature which helps us to declare and initialize an array without explicitly specifying the type and dimension. This infers at compile time. Good for Lazy developer like me J Dim arrInt = {1, 2, 3, 4, 5, 6, 7} 'becomes Integer() Read More...
VB.NET 10 : Nullable Optional Parameter
You can create method with optional parameter and also make them Nullable. Optional with default value Sub Test( ByVal _name As String , ByVal _email As String , Optional ByVal _age As Integer = 30) Optional and Nullable Sub Test( ByVal _name As String Read More...
VB.NET 10 : Collection Initializer
Another useful feature which was missing in VB.Net 9 is available in Visual Studio 2010. This provides option to declare and initialize with series of values with the keyword Form . Dim myList As New List ( Of Integer ) From {1, 2, 3, 4, 5, 6, 7, 8, 9, Read More...
Page view tracker