SolutionsMicrosoft.net Framework |
|||
|
|||
![]() |
Offshore.NET Development has successfully delivered a whole range of solutions on the .NET framework. By taking advantage of the features offered by the framework we are able to deliver solutions that are robust, scaleable and secure in nature. The .NET Framework is a software development platform developed by |
||
|
Microsoft that provides several built-in features and components that ease the process of developing software applications. .NET provides a platform independent architecture which is achieved through an Intermediate Language that runs on a virtual machine. Programs written on the .NET framework are compiled into the Intermediate Language. During runtime the .NET framework provides a Common Language Runtime (CLR) that converts the IL code into code native to the operating system running the application. .NET applications are robust and highly secure in nature. Security is achieved through two means: Code Access Security and Validation & Verification Tests. Code Access Security helps in maintaining code security. All program codes have permissions associated with it. The Code Access Security feature makes use of evidence such as from where the call to the code is being made, from whom the calls are being made etc to allow calls/invocation of code. Validation & Verification tests are performed by the CLR to verify the presence of metadata & CIL. The .NET framework provides support for multiple object oriented programming languages by providing a common object model and class library. Some of the languages supported are: . C# . VB.NET . J# . XAML . ASP.NET |
|||