MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / GetParameterIsOut

Method GetParameterIsOut

Source/Engine/Scripting/Runtime/Mono.cpp:1962–1967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1960}
1961
1962bool MMethod::GetParameterIsOut(int32 paramIdx) const
1963{
1964 MonoMethodSignature* sig = mono_method_signature(_monoMethod);
1965 ASSERT_LOW_LAYER(paramIdx >= 0 && paramIdx < (int32)mono_signature_get_param_count(sig));
1966 return mono_signature_param_is_out(sig, paramIdx) != 0;
1967}
1968
1969bool MMethod::HasAttribute(const MClass* klass) const
1970{

Callers 2

InvokeMethodMethod · 0.45
GetMethodSignatureMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected