ASP.NET is Multilanguage
- you will probably opt to use one language over another when you develop an application, that choice won’t determine what you can accomplish with your web applications. That’s because no matter what language you use, the code is compiled into IL
- IL is a stepping stone for every managed application. (A managed application is any application that’s written for .NET and executes inside the managed environment of the CLR.) In a sense, IL is the language of .NET, and it’s the only language that the CLR recognizes.
Example
using System;
namespace Exaple
{
public class ExampleClass
{
static void Main(string[] RJ)
{
Console.WriteLine("Hello ASP.NET");
}
}
}
In VB Code
Imports System
Namespace Example
Public Class ExampleClass
Shared Sub Main(RJ() As String)
Console.WriteLine("Hello ASP.NET")
End Sub
End Class
End Namespace
No comments:
Post a Comment