Mono.CSharp.DocUtil.IsTypeName C# (CSharp) Method

IsTypeName() private static method

private static IsTypeName ( string name ) : bool
name string
return bool
		private static bool IsTypeName (string name)
		{
			switch (name) {
			case "bool":
			case "byte":
			case "char":
			case "decimal":
			case "double":
			case "float":
			case "int":
			case "long":
			case "object":
			case "sbyte":
			case "short":
			case "string":
			case "uint":
			case "ulong":
			case "ushort":
			case "void":
				return true;
			}
			return false;
		}
	}