本文整理汇总了C#中TypeSpec.IsArray方法的典型用法代码示例。如果您正苦于以下问题:C# TypeSpec.IsArray方法的具体用法?C# TypeSpec.IsArray怎么用?C# TypeSpec.IsArray使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TypeSpec
的用法示例。
在下文中一共展示了TypeSpec.IsArray方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Parse
static TypeSpec Parse(string name, ref int p, bool is_recurse, bool allow_aqn)
{
int pos = p;
int name_start;
bool in_modifiers = false;
TypeSpec data = new TypeSpec();
SkipSpace(name, ref pos);
name_start = pos;
for (; pos < name.Length; ++pos)
{
switch (name[pos])
{
case '+':
data.AddName(name.Substring(name_start, pos - name_start));
name_start = pos + 1;
break;
case ',':
case ']':
data.AddName(name.Substring(name_start, pos - name_start));
name_start = pos + 1;
in_modifiers = true;
if (is_recurse && !allow_aqn)
{
p = pos;
return data;
}
break;
case '&':
case '*':
case '[':
if (name[pos] != '[' && is_recurse)
throw new ArgumentException("Generic argument can't be byref or pointer type", "typeName");
data.AddName(name.Substring(name_start, pos - name_start));
name_start = pos + 1;
in_modifiers = true;
break;
}
if (in_modifiers)
break;
}
if (name_start < pos)
data.AddName(name.Substring(name_start, pos - name_start));
if (in_modifiers)
{
for (; pos < name.Length; ++pos)
{
switch (name[pos])
{
case '&':
if (data.is_byref)
throw new ArgumentException("Can't have a byref of a byref", "typeName");
data.is_byref = true;
break;
case '*':
if (data.is_byref)
throw new ArgumentException("Can't have a pointer to a byref type", "typeName");
++data.pointer_level;
break;
case ',':
if (is_recurse)
{
int end = pos;
while (end < name.Length && name[end] != ']')
++end;
if (end >= name.Length)
throw new ArgumentException("Unmatched ']' while parsing generic argument assembly name");
data.assembly_name = name.Substring(pos + 1, end - pos - 1).Trim();
p = end + 1;
return data;
}
data.assembly_name = name.Substring(pos + 1).Trim();
pos = name.Length;
break;
case '[':
if (data.is_byref)
throw new ArgumentException("Byref qualifier must be the last one of a type", "typeName");
++pos;
if (pos >= name.Length)
throw new ArgumentException("Invalid array/generic spec", "typeName");
SkipSpace(name, ref pos);
if (name[pos] != ',' && name[pos] != '*' && name[pos] != ']')
{//generic args
List<TypeSpec> args = new List<TypeSpec>();
if (data.IsArray())
throw new ArgumentException("generic args after array spec", "typeName");
while (pos < name.Length)
{
SkipSpace(name, ref pos);
bool aqn = name[pos] == '[';
if (aqn)
++pos; //skip '[' to the start of the type
//.........这里部分代码省略.........