C# (pronounced "C-sharp") is a Microsoft object-oriented programming language that seeks to combine the computational power of C++ with the programming simplicity of Visual Basic. C Sharp Programming Help with features close to Java.
C# is intended to be used with Microsoft. Net platform. Microsoft's goal is to make it easier to share information and resources over the Internet, as well as to allow developers to create highly portable applications. C# simplifies programming by using Extensible Markup Language (XML) and Simple Object Access Protocol (SOAP), which enable access to a programming object or method without the programmer having to write additional code for each stage. C# is supposed to make it easier and less costly to bring new products and services to market because programmers can draw on existing code rather than repeatedly duplicating it.
Microsoft is working with the international standards body ECMA to develop a C# standard. Recognition by the International Standards Organization (ISO) for C# will allow other organizations to create their own versions of the language. Apex Software, Bunka Orient, Component Source, devout, FarPoint Technologies, LEAD Technologies, ProtoView, and Seagate Software are among the companies that already use C#.
C#'S PRIMARY FEATURES
1. BREEZE
- C# does not have pointers.
- Direct memory manipulation, for example, is not permitted.
- There are no "::" or "->" operators in C#.
- Since it is built on.NET, it inherits features such as automatic memory management and garbage collection.
- Variable sets of primitive forms such as Integers, Floats, and so on.
- Boolean values of integer values of 0 and 1 are no longer allowed.
- In C#, Boolean values are pure true or false values, so no more "="operator and "==" operator errors.
- The comparison operator "==" is used for comparison, and the assignment operator "=" is used for assignment.
2. MODERNISM
C# is based on current trends and is very efficient and easy to use for developing interoperable, scalable, and robust applications.
C# provides built-in support for transforming any component into a web service that can be accessed through the internet from any application running on any platform.
3. OBJECT-ORIENTED
C# supports Data Encapsulation, inheritance,polymorphism, interfaces.
(int,float, double) are not objects in java but C# has introduces structures(structs) which enable the primitive types to become objects.
int i=1;
string a=i Tostring(); //conversion (or) Boxing
4. TYPESAFE
In C# we cannot perform unsafe casts like convert double to a boolean.
Value types (primitive types) are initialized to zeros and reference types (objects and classes) are initialized to null by the compiler automatically.
arrays are zero bases indexed and are bound checked.
Overflow of types can be checked.
5. INTEROPERABILITY
C# includes native support for the COM and windows based applications.
Allowing restricted use of native pointers.
Users no longer have to explicitly implement the unknown and other COM interfacers, those features are built-in.
C# allows the users to use pointers as unsafe code blocks to manipulate your old code.
Components from VB NET and other managed code languages and directly be used in C#.
6. SCALABLE AND UPDATEABLE
.NET has introduced assemblies that are self-describing by means of their manifest. the manifest establishes the assembly identity, version, culture, and digital signature etc. Assemblies need not be registered anywhere.
To scale our application we delete the old files and updating them with new ones. No registering of the dynamic linking library.
Updating software components is an error-prone task. Revisions made to the code. can affect the existing program C# support versioning in the language. Native support for interfaces and method overriding enables complex frameworks to be developed and evolved over time.
CONCLUSION
C Sharp Programming Help is a modern, type-safe programming language, object-oriented language that enables programmers to quickly and easily build solutions for the Microsoft .NET platform.
Comments
Post a Comment