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

Method ToString

Source/Editor/Scripting/ScriptType.cs:1022–1029  ·  view source on GitHub ↗

()

Source from the content-addressed store, hash-verified

1020
1021 /// <inheritdoc />
1022 public override string ToString()
1023 {
1024 if (_managed != null)
1025 return _managed.GetTypeDisplayName() ?? string.Empty;
1026 if (_custom != null)
1027 return _custom.TypeName;
1028 return "<null>";
1029 }
1030
1031 /// <summary>
1032 /// Determines whether the current type derives from the specified type.

Callers 4

FindScriptMethod · 0.45
GetTypeDisplayNameMethod · 0.45
ToStringMethod · 0.45
GetSignatureMethod · 0.45

Calls 1

GetTypeDisplayNameMethod · 0.80

Tested by

no test coverage detected