C# is pronounced as “See Sharp”. It is object oriented programming language developed by Microsoft which runs under .NET platform. Its syntax is similar to C++ or Java. It's most recent version C# 5.0 was released on August 15, 2012. It is widely used for developing web application, windows application, smart phone apps and games etc.
The advantageous features of C# over java are as follows.
C# offers cross language interoperability or mixed language programming (Java lacking).
C# directly supports windows operating system (Java lacking).
C# is component-oriented language integrated support for writing of software support.
C# support pointer as unsafe (Java lacking it).
The evolution history of C# is as follows:
Managed Code
IDE - Visual Studio 2002, 2003
.NET Framework - 1.0, 1.1
Generics
Static Classes
Partial types
Anonymous methods
Iterators
Nullable types
Asymmetric Property and Indexer Accessors
Delegate Inference
Covariance and Contra-variance
IDE - Visual Studio 2005
.NET Framework - 2.0
Implicit types (var)
Partial Methods
Object and collection initializers
Auto-Implemented properties
Anonymous types
Extension methods
LINQ
Query expressions
Lambda expressions
Expression trees
IDE - Visual Studio 2008
.NET Framework - 3.5
Dynamic binding
Named arguments
Optional Parameters
Generic Covariance and Contra-variance
COM Interop
IDE - Visual Studio 2010
.NET Framework - 4.0
Asynchronous methods
Caller info attributes
IDE - Visual Studio 2012, 2013
.NET Framework - 4.5, 4.5.1
The new features in C# 5.0 are given below:
C# 5.0 Async feature introduces two keywords async and await which allows you to write asynchronous code more easily and intuitively like as synchronous code. Before C# 5.0, for writing an asynchronous code, you need to define callbacks (also known as continuations) to capture what happens after an asynchronous process finishes. This makes your code and other routine task such exception handling complicated.
Both the keywords are used in a combination of each other. Hence, an await operator is applied to a one or more than one expressions of an async method. An async method returns a Task or Task<TResult> that represents the ongoing work of the method. The task contains information that the caller of the asynchronous method can use, such as the status of the task, its unique ID, and the method's result.
public async Task<IEnumerable<Product>> GetProductList()
{
HttpClient client = new HttpClient();
Uri address = new Uri("http://dotnet-tricks.com/");
client.BaseAddress = address;
HttpResponseMessage response = await client.GetAsync("myservice/product/ProductList");
if (response.IsSuccessStatusCode)
{
var list = await response.Content.ReadAsAsync<IEnumerable<Product>>();
return list;
}
else
{
return null;
}
}
Caller Information can help you in tracing, debugging and creating diagnose tools. It will help you to avoid duplicate codes which are generally invoked in many methods for same purpose, such as logging and tracing.
You could get the following information of caller method:
Full path of the source file that contains the caller. This is the file path at compile time.
Line number in the source file at which the method is called.
Method or property name of the caller.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Example
{
static void Main(string[] args)
{
Console.WriteLine("Main method Start");
InsertLog("Main");
MyMethodB();
MyMethodA();
Console.WriteLine("Main method End!");
Console.ReadLine(); // hold on result
}
static void MyMethodA()
{
InsertLog("MyMethodA");
MyMethodB();
}
static void MyMethodB()
{
// some code here.
}
static void InsertLog(string method)
{
Console.WriteLine("{0} called MyMethodB at {1}", method,
DateTime.Now);
}
}
/* Output:
Main method Start
Main called MyMethodB at 11/17/2013 11:12:24 PM
MyMethodA called MyMethodB at 11/17/2013 11:12:24 PM
Main method End!
*/
In both Main and MyMethodA, method InsertLog is invoked for logging. Now we can change the above code as follows.
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
class Example
{
static void Main(string[] args)
{
Console.WriteLine("Main method Start");
MyMethodB();
MyMethodA();
Console.WriteLine("Main method End!");
Console.ReadLine();
}
static void MyMethodA()
{
MyMethodB();
}
static void MyMethodB([CallerMemberName] string memberName = "", [CallerFilePath] string sourceFilePath = "", [CallerLineNumber] int sourceLineNumber = 0)
{
InsertLog(memberName);
}
static void InsertLog(string method)
{
Console.WriteLine("{0} called MyMethodB at {1}", method, DateTime.Now);
}
}
/*Output:
Main method Start
Main called MyMethodB at 11/17/2013 10:30:11 PM
MyMethodA called MyMethodB at 11/17/2013 10:30:11 PM
Main method End!
*/
The new features of C# 4.0 are given below:
This feature is derived from dynamic languages such as Python, Ruby and JavaScript which resolve the types and members at runtime instead of compile time.
dynamic d = "hello c#"; Console.WriteLine(d.ToUpper()); // HELLO C# Console.WriteLine(d.Show()); // Compiles OK, but gives error at runtime
In C# 4.0, methods parameters can be specified as optional by providing a default value. When the method having optional parameter is invoked, optional parameters can be omitted.
void Sum(int a, int b = 10)
{
Console.WriteLine(a+b);
}
Above method can be called as:
Sum(5); // 15
In C# 4.0, any argument can be passed by parameter name instead of parameter position. The Sum() can be called as :
Sum(b:5,a:10); // 15
C# 4.0, allows generic interfaces and generic delegates to mark their type parameters as covariant or contravariant. This enables the following code to work:
IEnumerable<string> str; //TO DO: assign values to str IEnumerable<object> obj = str;
Dynamic binding as well as named and optional arguments help making programming against COM less painful than today. On top of that, however, we are adding a number of other features that further improve the interoperability experience specifically with COM.
C# code execution life cycle diagram is shown as follows: