csharp Tutorials
What is C#?

- 2011-02-04
- Comments
- Ram Baskar
- 217
C# (pronounced "see sharp") is a multi-paradigm programming language encompassing imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines. It was developed by Microsoft within the .NET initiative and later approved as a standard by Ecma (ECMA-334) and ISO (ISO/IEC 23270). C# is one of the programming languages designed for the Common Language Infrastructure.
Read More
Design Goals of C#

- 2011-02-04
- Comments
- Ram Baskar
- 217
The ECMA standard lists these design goals for C#:
Read More
Why it was named C#?

- 2011-02-04
- Comments
- Ram Baskar
- 217
The name "C sharp" was inspired by musical notation where a sharp indicates that the written note should be made a semitone higher in pitch. This is similar to the language name of C++, where "++" indicates that a variable should be incremented by 1.
Read More
History of C#?

- 2011-02-04
- Comments
- Ram Baskar
- 217
During the development of the .NET Framework, the class libraries were originally written using a managed code compiler system called Simple Managed C (SMC). In January 1999, Anders Hejlsberg formed a team to build a new language at the time called Cool, which stood for "C-like Object Oriented Language". Microsoft had considered keeping the name "Cool" as the final name of the language, but chose not to do so for trademark reasons. By the time the .NET project was publicly announced at the July 2000 Professional Developers Conference, the language had been renamed C#, and the class libraries and ASP.NET runtime had been ported to C#.
Read More
Which version of C# to use?

- 2011-02-04
- Comments
- Ram Baskar
- 217
For a beginner it is always a daunting task to decide on which version to use and which development tool to use. The table here shows clearly the available versions of C# and the corresponding Visual Studio version to use.
Read More
Major features of C#

- 2011-02-05
- Comments
- Ram Baskar
- 218
By design, C# is the programming language that most directly reflects the underlying Common Language Infrastructure (CLI). Most of its intrinsic types correspond to value-types implemented by the CLI framework. However, the language specification does not state the code generation requirements of the compiler: that is, it does not state that a C# compiler must target a Common Language Runtime, or generate Common Intermediate Language (CIL), or generate any other specific format. Theoretically, a C# compiler could generate machine code like traditional compilers of C++ or Fortran.
Read More
Comments in C#

- 2011-02-05
- Comments
- Ram Baskar
- 217
C# utilizes a double forward slash (//) to indicate the rest of the line is a comment. This is inherited from C++.
Read More
Categories of datatypes in C#

- 2011-02-05
- Comments
- Ram Baskar
- 217
Value types are plain aggregations of data. Instances of value types do not have referential identity nor a referential comparison semantics - equality and inequality comparisons for value types compare the actual data values within the instances, unless the corresponding operators are overloaded. Value types are derived from System.ValueType, always have a default value, and can always be created and copied. Some other limitations on value types are that they cannot derive from each other (but can implement interfaces) and cannot have an explicit default (parameterless) constructor. Examples of value types are some primitive types, such as int (a signed 32-bit integer), float (a 32-bit IEEE floating-point number), char (a 16-bit Unicode code unit), and System.DateTime (identifies a specific point in time with nanosecond precision). Other examples are enum (enumerations) and struct (user defined structures).
Read More
Hello World sample program in C#

- 2011-02-05
- Comments
- Ram Baskar
- 217
The above line of code tells the compiler to use 'System' as a candidate prefix for types used in the source code. In this case, when the compiler sees use of the 'Console' type later in the source code, it tries to find a type named 'Console', first in the current assembly, followed by all referenced assemblies. In this case the compiler fails to find such a type, since the name of the type is actually 'System.Console'. The compiler then attempts to find a type named 'System.Console' by using the 'System' prefix from the using statement, and this time it succeeds. The using statement allows the programmer to state all candidate prefixes to use during compilation instead of always using full type names.
Read More
Most Viewed Articles on csharp |
Latest Tutorials |
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Archived Comments
1. Excellent!!!!! Thanks
View Tutorial By: nimbostratue at 2009-12-09 13:07:09
2. i am run code this rectify this error please some
View Tutorial By: indiran at 2010-01-28 01:45:56
3. 510
1020
2040
4080
816
View Tutorial By: sky at 2010-07-17 06:54:46
4. simple but very usefull example, thanks a lot
View Tutorial By: yiyo at 2011-12-01 15:18:43
5. nativeFinalize: Error closing Handle 6
and
View Tutorial By: yash at 2008-05-16 17:43:42
6. Thanks a lot. In a very Simple way you explained.<
View Tutorial By: Shoaeb uddin at 2012-01-13 18:53:45
7. had the sample problem.. java.io.IOException: HTTP
View Tutorial By: java at 2012-08-22 09:39:57
8. The logo is a cup of coffee. Java is an island in
View Tutorial By: kamal goduguluri at 2012-05-30 15:34:21
9. hi..i did a sms sending pgm..it works without erro
View Tutorial By: Ragesh Gopal at 2011-09-02 10:02:59
10. It worked for me. Thanks a lot. Hi Sasikumar, I th
View Tutorial By: Ramlak at 2007-03-05 01:53:14