C# version
Created at 14 Jul 2019, 13:45
C# version
14 Jul 2019, 13:45
Hello,
If I'm not mistaken, the current version of C# language is 4.0.
Do you plan in the near future to update the C# language version to 6.0 or 8.0?
Replies
westend.trading
20 Jul 2019, 13:23
Visual Studio 2017 wraps private variables (using operation "Encapsulate Field") by default in properties like this:
private string prov; public string Provider { get => prov; }
This causes compilation error:
Error CS1043: { or ; expected
Which is due to the lower compiler version.
Not dramatic but still looking forward to the update.
@westend.trading
PanagiotisCharalampous
17 Jul 2019, 12:08
Hi Igor,
Yes we plan to upgrade but this will not be delivered in the immediate upcoming updates.
Best Regards,
Panagiotis
@PanagiotisCharalampous