csharp Tutorials
What is C#?

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

- 2011-02-04
- Comments
- Ram Baskar
- 6619
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
- 6620
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
- 6621
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
- 6619
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
- 6619
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
- 6620
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
- 6619
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. thanks a lot,nicely explained
View Tutorial By: dhanushka at 2014-08-13 14:40:37
2. Java is very queit Langauge.
View Tutorial By: Ashutosh Srivasatava at 2008-10-16 06:24:02
3. Thanks Man!! Been searching for a simple one like
View Tutorial By: Kid at 2012-10-12 14:15:43
4. Great!
View Tutorial By: justauser at 2012-08-31 13:57:58
5. pls help me .....its hard to understand for me th
View Tutorial By: heidi at 2010-06-27 02:31:29
6. This is an excerpt from Java Complete Reference.Ju
View Tutorial By: Guest at 2010-03-25 01:36:57
7. Example:
String sOne = "hello
View Tutorial By: Adam at 2009-11-10 12:55:51
8. sir,
When I run the above code and give 6 o
View Tutorial By: nishant at 2012-07-01 17:11:20
9. Can you explain with increment and decrement opera
View Tutorial By: Sathish Kumar at 2013-09-01 07:40:42
10. why push is error in st.push(new Integer(a)); ? an
View Tutorial By: ann at 2015-02-02 09:23:41