C# version

Created at 14 Jul 2019, 13:45
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
HE

helex93

Joined 30.08.2018

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?


@helex93
Replies

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

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