.NET version c# version
1.0----------c# 1.0
1.1----------c# 1.0
2.0----------c# 2.0
3.0----------c# 2.0
3.5----------c# 3.0
I guess I have made the above table right because I have come to know that C# version and .NET framework version is different.
The .NET framework is installed as setup packages like dotnetfx for .net 2.0.
It contains the c# compiler also csc.exe.
From the above table we see that the same c# compiler (c# 2.0) is used for .NET 2.0, 3.0.
SO how would I instruct the C# compiler to use a particular version of .NET framework ?
1.0----------c# 1.0
1.1----------c# 1.0
2.0----------c# 2.0
3.0----------c# 2.0
3.5----------c# 3.0
I guess I have made the above table right because I have come to know that C# version and .NET framework version is different.
The .NET framework is installed as setup packages like dotnetfx for .net 2.0.
It contains the c# compiler also csc.exe.
From the above table we see that the same c# compiler (c# 2.0) is used for .NET 2.0, 3.0.
SO how would I instruct the C# compiler to use a particular version of .NET framework ?
Comment