Skip to main content

Posts

Showing posts with the label dot net tutorials

History of Dotnet | Tutorials | Softlogic Systems in Chennai

Microsoft has developed .Net platform to ease the application development process with the help of excellent tools and frameworks. The IDE (Integrated Development Environment) of .Net Framework is known as Visual Studio and it is introduced in the year 2002. The feature of accommodating various programming languages and object oriented programming concepts makes it an unique and efficient IDE. The following table shows the brief history of Visual Studio IDE: Year 2002 - Visual Studio 1.0 Introduced with Common Language Run-time and support for web applications using object oriented programming concepts. Year 2003   - Visual Studio 1.1 Features like ASP.NET, ADO.NET, ODBC, databases were added to the framework. It supports mobile ASP.NET controls and Internet Protocol Version 6. Year 2004 - Visual Studio 2.0 CLR 2.0 is introduced, generics, partial classes and other features added Year 2005 - Visual Studio 3.0 It comes ...

Oops Concepts | Dot Net Tutorial | Softlogic Systems in Chennai

Object oriented programming works on the basis of concepts such as object, class, data abstraction, data encapsulation, inheritance, polymorphism, dynamic binding and message passing. These concepts makes the object oriented programming better and superior than the other programming languages. Class Class is a template for creating objects. One or more number of objects can be created using single class. Each class may or may not contain member variable and member functions. Object Object is an instance of class. It is a collection of member functions and data. Data Abstraction Creating user defined data types by hiding the details and representing only the needed information. Data Encapsulation Data Encapsulation prevents the direct access of data and lets access only with the help of functions. Inheritance The process of acquiring the properties of one class to another class. Polymorphism Single function or operator perf...