System.Reflection.Emit.GenericInstanceKey.IsBoundedVector C# (CSharp) Метод

IsBoundedVector() статический приватный Метод

static private IsBoundedVector ( Type type ) : bool
type System.Type
Результат bool
		static bool IsBoundedVector (Type type) {
			ArrayType at = type as ArrayType;
			if (at != null)
				return at.GetEffectiveRank () == 1;
			return type.ToString ().EndsWith ("[*]", StringComparison.Ordinal); /*Super uggly hack, SR doesn't allow one to query for it */
		}