You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice to have implicit casts / conversions for ValueContainer, simplifying constructing a ValueContainer like below:
public override ValueTask<ValueContainer> ExecuteFunction(params ValueContainer[] parameters)
{
var relationship = parameters[0]?.ToString();
return new ValueTask<ValueContainer>(new ValueContainer(relationship));
}
with implicit conversions between simple types and ValueContainer one might do this instead
public override ValueTask<ValueContainer> ExecuteFunction(params ValueContainer[] parameters)
{
var relationship = parameters[0]?.ToString();
return new ValueTask<ValueContainer>(relationship);
}
The text was updated successfully, but these errors were encountered:
Would be nice to have implicit casts / conversions for ValueContainer, simplifying constructing a ValueContainer like below:
with implicit conversions between simple types and ValueContainer one might do this instead
The text was updated successfully, but these errors were encountered: