Dipa Ahuja

Dipa Ahuja

  • NA
  • 3.3k
  • 705.7k

why the difference in C# and VB.net Code file?

Jul 17 2010 11:21 AM
hi to everyone..


both vb.net and C# used for windows application

then on every new project why we get different code file?


C#

namespace WindowsApplication7
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
    }
}


VB.NET


Public Class Form1

End Class


can anyone tell me the why?

thank you..!


Answers (5)