csharp Tutorials
What is C#?

- 2011-02-04
- Comments
- Ram Baskar
- 597
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
- 597
The ECMA standard lists these design goals for C#:
Read More
Why it was named C#?

- 2011-02-04
- Comments
- Ram Baskar
- 597
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
- 597
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
- 597
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
- 597
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
- 597
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
- 597
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
- 597
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
Subscribe to Tutorials
Related Tutorials
Archived Comments
1. Hi all, i have tried above code, but am getting fo
View Tutorial By: swathi at 2010-06-24 05:18:28
2. Hi,
how can make a report to display one re
View Tutorial By: david at 2013-08-30 16:09:23
3. good;Every one can understand
View Tutorial By: seshu at 2011-04-26 05:11:09
4. i want very simple & easy notes on php which u
View Tutorial By: deepa at 2011-07-12 09:04:30
5. Excellent.. simple and too good to understand
View Tutorial By: venkat at 2010-05-11 00:30:02
6. Following line
if (strcmp(dp->
View Tutorial By: Sebastiaan Jaarsma at 2012-12-24 19:28:43
7. as we write:
ob1.t.join();
Does t
View Tutorial By: abc123 at 2011-04-03 13:33:33
8. Hello,
I am still getting the below
View Tutorial By: pavithra at 2012-03-25 19:33:38
9. Please resolve this problems :
ja
View Tutorial By: madhusudhakar at 2014-10-24 06:11:10
10. Works thnx :D :D :D :D
View Tutorial By: nik at 2014-11-09 20:44:29