Can you create 1 Visual Basi C # and 1 Web Form in ASP.NET?

1

I am starting to "program" in ASP.net and the question arises as to whether 2 different Web Forms can be created, that is, each with a "language", one with C # and the other with Visual Basic.

And also know if there is much difference between both languages (C # and Visual Basic), in addition to the difference of the syntax.

Greetings.

    
asked by M. Giner 04.06.2018 в 08:11
source

1 answer

1

You can not create 2 different classes or WebForms with C # / VB.NET in the same project, but you can create another project within the solution and use VB.NET. Therefore, it is possible to use different languages but you need to use different projects for that.

Although C # and VB.NET are syntactically very different, that's where the differences end. Microsoft developed both languages to be part of the same .NET Framework development platform. ... Compiled in the same intermediate language (IL), which runs in the same .NET Framework runtime libraries.

    
answered by 04.06.2018 / 10:15
source