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

Method GetDictionaryKeys

Source/Engine/Scripting/Scripting.cs:240–248  ·  view source on GitHub ↗
(IDictionary dictionary)

Source from the content-addressed store, hash-verified

238 }
239
240 internal static object[] GetDictionaryKeys(IDictionary dictionary)
241 {
242 if (dictionary == null)
243 return null;
244 var keys = dictionary.Keys;
245 var result = new object[keys.Count];
246 keys.CopyTo(result, 0);
247 return result;
248 }
249
250 internal static ManagedHandle VersionToManaged(int major, int minor, int build, int revision)
251 {

Callers

nothing calls this directly

Calls 1

CopyToMethod · 0.45

Tested by

no test coverage detected