5
Answers

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

Dipa Ahuja

Dipa Ahuja

14y
4.1k
1
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)