Hi, I have a question regarding CallStaticMethod.cs file.
I'm wondering CallStaticMethod.cs file's storeResult.SetValue(result);(line 92) is supposed to be like
if (result != null)
{
storeResult.SetValue(result);
}
for a case that the result is null when called a void function..
Is it an intended feature?
Thank you.