Menu

vb.net

C#’s var keyword equivalent in VB.NET

This article will explain the keyword "Dim" which is the C#'s var keyword equivalent in VB.NET . In one of my previous blog posts , I explained about 5 things that you cannot do with a Local Type Inference in C# which explained about the use of the Read More →

Anonymous Type Differs in C# and VB.NET

Have you Observed anonymous types closely in c# as well as VB.NET ? Check the below sample sourcecode In VB.NET
 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim PersonData As New Dictionary(Of String, Integer)

        PersonData.Add("Ilayathalapathy Vijay", 51)
        PersonData.Add("Ultimate Star Ajithkumar", 49)
        PersonData.Add("SuperStar Rajnikanth", 100)

        Dim MoreThan100MoviesHero = (From Read More →           
Back to top

© 2011-2013 Senthil Kumar's Blog This is my personal blog .The opinions expressed here represent my own and not those of my employer . All Rights Reserved -- Copyright notice by Blog Copyright