Tries to find a given scripting type by the full name. The full name of the type eg: System.Int64.MaxInt. The result type index in Types array of this module. Valid only if method returns true. True if found a type, otherwise false.
| 116 | /// <param name="typeIndex">The result type index in Types array of this module. Valid only if method returns true.</param> |
| 117 | /// <returns>True if found a type, otherwise false.</returns> |
| 118 | virtual bool FindScriptingType(const StringAnsiView& typeName, int32& typeIndex) |
| 119 | { |
| 120 | return TypeNameToTypeIndex.TryGet(typeName, typeIndex); |
| 121 | } |
| 122 | |
| 123 | /// <summary> |
| 124 | /// Gets handles of all method in a given scripting type. |
no test coverage detected