Skip to content

[feature] Support for out parameters #83

Closed
@olegbevz

Description

@olegbevz

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?

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions