31f8d3525d
(cherry picked from commit ee3c476c9a
)
18 lines
372 B
C#
18 lines
372 B
C#
using System;
|
|
|
|
namespace Godot
|
|
{
|
|
static class MarshalUtils
|
|
{
|
|
static bool IsArrayGenericType(Type type)
|
|
{
|
|
return type.GetGenericTypeDefinition() == typeof(Array<>);
|
|
}
|
|
|
|
static bool IsDictionaryGenericType(Type type)
|
|
{
|
|
return type.GetGenericTypeDefinition() == typeof(Dictionary<, >);
|
|
}
|
|
}
|
|
}
|