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..!