C# Features

C# is an Object0oriented programming having many features. Some of the main features are explained briefly below, point by point. What are the Features of C++ programming Language? Simple and easy to use Modern and General-purpose Type safe (security) Object-Oriented language C# is Interoperability, Scalable and Updatable Component-Oriented and Structured Programming Language Rich in Library … Read more

C# – Introduction

C# is a modern, general-purpose, object-oriented programming language developed by Microsoft and approved by the European Computer Manufacturers Association (ECMA) and International Standards Organization (ISO). C# was developed by Anders Hejlsberg and his team during the development of the .Net Framework.It is designed for Common Language Infrastructure (CLI), which consists of the executable code and … Read more

C# Variables (initialization, declaration, syntax and example)

Variables are like a storage unit that stores the values of various data-types present in a C# programming language. The types are different in C# and accordingly, the memory sizes are allocated to those types to store data values. Consider an example where you have declared a variable of type int that means that the … Read more

C# Data Types and Literals

As we know the variables holds the data and the type of data that it holds refers to the data-types. Theses types are: integer, float, double, boolean, etc. and each of this data-types has a specific size such as integer has the memory size of 4 byte and so on. Now, C# has categorized its … Read more