Browse by Tags
All Tags »
Visual Studio 2010 (RSS)
WOW!!! When I first saw it. Patterns for Parallel Programming: Understanding and Applying Parallel Patterns with the .NET Framework 4 http://www.microsoft.com/downloads/details.aspx?FamilyID=86b3d32b-ad26-4bb8-a3ae-c1637026c3ee&displaylang=en You
Read More...
If you want to assign Nothing to the optional parameter in VB.NET 10, it is just like to obvious now, Sub Main() 'Passing value for the optional parament _age MyFunc( "Wriju" , "wriju@contoso.com" , 30 ) 'No value is supplied for the optional parament
Read More...
With implicit line continuation VB.NET 10 now allows you to write the multiline Lambdas. That means like your normal Functions you can write functions under Lambdas. So now you may write like, Dim arrInt As Integer () = { 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8
Read More...
Visual Studio 2010 has new API for LINQ (Language Integrated Query). This helps us to implement the power of Parallel Computing in declarative manner. LINQ without Parallel Extension It will take 3 sec for 28 thousand elements. static void Main( string
Read More...
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...
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 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...
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...
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...
Download Link from here http://silverlight.services.live.com/93612/Parallel%20Computing%20in%20Visual%20Studio%202010%20Beta%201%20-%20Task%20API/video.wmv Namoskar!!!
Read More...
List is quite big!!! Core Services Web.config File Minification Extensible Output Caching Auto-Start Web Applications Permanently Redirecting a Page The Incredible Shrinking Session State Expanding the Range of Allowable URLs Extensible Request Validation
Read More...
I thought I will start the series of podcasting. This one is on Dynamic Object of C# 4.0 Namoskar!!!
Read More...
It has quite a sometime we have been using .NET with System.Threading namespace. So what is new there in Parallel Computing in .NET Framework 4.0 with Visual Studio 2010 . There are a lot Ø Task-based fine grained parallelism Ø Better debugger feature
Read More...
The question often arises what is so special in C# 4.0 about COM Interop. To me it is a lot. I will try to explain why.. Assume you are trying to get the list of proccess running locally in your machine and creating them using Excel chart and copying
Read More...
C# 4.0 The Future of C# by Anders Hejlsberg at PDC 2008 http://channel9.msdn.com/pdc2008/TL16/ Slide Deck http://mschnlnine.vo.llnwd.net/d1/pdc08/PPTX/TL16.pptx Sample Code and Whitepapers http://code.msdn.microsoft.com/csharpfuture/ C# 4.0, Dynamic Programming
Read More...