Thursday 10 August 2017

AS.NET

 ASP.NET is Multilanguage

  1. 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 
  2. 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

Part 20 consuming rest api in ionic

in this video, I will show you that how you can consume the rest API. in the previous video we have implemented the asp.net web API projec...