C# version
-
What is the latest C# version? is it same as the .net version number?? ie C# comes with .net4.0 is C#4.0. Is it like that?
My small attempt...
-
What is the latest C# version? is it same as the .net version number?? ie C# comes with .net4.0 is C#4.0. Is it like that?
My small attempt...
Latest version of c# is 4.0. Yes, you are right, c# 4.0 comes with Visual Studio 2010 (.Net Framework 4.0). :)
-
What is the latest C# version? is it same as the .net version number?? ie C# comes with .net4.0 is C#4.0. Is it like that?
My small attempt...
sujithkumarsl wrote:
Is it like that?
For .Net 4.0 this is the case i.e. C# 4.0 comes with .Net 4.0. The CLR for this has also been given the version number 4.0. However, C# 3.0 worked on CLR 2.0 and Framework 3.5. So version numbers need not necessarily be same.
-
sujithkumarsl wrote:
Is it like that?
For .Net 4.0 this is the case i.e. C# 4.0 comes with .Net 4.0. The CLR for this has also been given the version number 4.0. However, C# 3.0 worked on CLR 2.0 and Framework 3.5. So version numbers need not necessarily be same.
Thank you for the answers.... It was an interview question... i said the latest is C#4.0 but he was not convinced
My small attempt...