Closed
Description
Hello, I need to call IDictionary.TryGetValue method in my expression, as I understand out parameters are not supported now.
I've tried to execute following code in TryWindow application:
var dictionary = new Dictionary<string, object>();
dictionary.Add("x", 5);
object number = null;
if (dictionary.TryGetValue("x", out number))
return number;
return 0;
and have got following message:
Variable [out] unknown in expression : [out number]
Mb I did something wrong?
Are there any plans to support out parameters feature?