Skip to main content

Posts

Showing posts from 2015

NET Framework Introduction

C# Programming/NET Framework overview .NET Framework is a common environment for building, deploying, and running Web Services, Web Applications, Windows Services and Windows Applications. The .NET Framework contains common class libraries - like ADO.NET, ASP.NET and Windows Forms - to provide advanced standard services that can be integrated into a variety of computer systems. Introduction In June 2000 Microsoft released both the .NET platform and a new program language called C#. C# is a general-purpose OOP language designed to give optimum simplicity , expansiveness,and performance. Its syntax is very similar to Java, with the major difference being that all variable types are derived from a common ancestor class. C# is a language in itself. It can perform mathematical and logical operations, variable assignment and other expected traits of a programming language. This in itself is not flexible enough for more complex applications. At some stage, the developer will want...