1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Add IsArray and IsSizedArray to Type

This commit is contained in:
Chris Phillips 2020-12-31 15:02:12 -05:00
parent a672b49dea
commit c399b79bd5

View file

@ -191,6 +191,22 @@ namespace System
} }
} }
public bool IsArray
{
get
{
return (mTypeFlags & TypeFlags.Array) != 0;
}
}
public bool IsSizedArray
{
get
{
return (mTypeFlags & TypeFlags.SizedArray) != 0;
}
}
public bool IsObject public bool IsObject
{ {
get get