本文整理汇总了C#中System.Type.Type.GetGenericArguments方法的典型用法代码示例。如果您正苦于以下问题:C# Type.Type.GetGenericArguments方法的具体用法?C# Type.Type.GetGenericArguments怎么用?C# Type.Type.GetGenericArguments使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Type.Type
的用法示例。
在下文中一共展示了Type.Type.GetGenericArguments方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetMethod
public static MethodInfo GetMethod (Type type, MethodInfo method)
{
if (!IsValidGetMethodType (type))
throw new ArgumentException ("type is not TypeBuilder but " + type.GetType (), "type");
if (type is TypeBuilder && type.ContainsGenericParameters)
type = type.MakeGenericType (type.GetGenericArguments ());
if (!type.IsGenericType)
throw new ArgumentException ("type is not a generic type", "type");
if (!method.DeclaringType.IsGenericTypeDefinition)
throw new ArgumentException ("method declaring type is not a generic type definition", "method");
if (method.DeclaringType != type.GetGenericTypeDefinition ())
throw new ArgumentException ("method declaring type is not the generic type definition of type", "method");
if (method == null)
throw new NullReferenceException (); //MS raises this instead of an ArgumentNullException
MethodInfo res = type.GetMethod (method);
if (res == null)
throw new ArgumentException (String.Format ("method {0} not found in type {1}", method.Name, type));
return res;
}
示例2: CoerceType
internal object CoerceType(Type targetType, object value)
{
bool isNullable = TypeCoercionUtility.IsNullable(targetType);
if (value == null)
{
if (!allowNullValueTypes &&
TypeCoercionUtility.GetTypeInfo(targetType).IsValueType &&
!isNullable)
{
throw new JsonTypeCoercionException(String.Format(TypeCoercionUtility.ErrorNullValueType, new System.Object[] {targetType.FullName}));
}
return value;
}
if (isNullable)
{
// nullable types have a real underlying struct
Type[] genericArgs = targetType.GetGenericArguments();
if (genericArgs.Length == 1)
{
targetType = genericArgs[0];
}
}
Type actualType = value.GetType();
if (TypeCoercionUtility.GetTypeInfo(targetType).IsAssignableFrom(TypeCoercionUtility.GetTypeInfo(actualType)))
{
return value;
}
if (TypeCoercionUtility.GetTypeInfo(targetType).IsEnum)
{
if (value is String)
{
if (!Enum.IsDefined(targetType, value))
{
// if isn't a defined value perhaps it is the JsonName
foreach (FieldInfo field in TypeCoercionUtility.GetTypeInfo(targetType).GetFields())
{
string jsonName = JsonNameAttribute.GetJsonName(field);
if (((string)value).Equals(jsonName))
{
value = field.Name;
break;
}
}
}
return Enum.Parse(targetType, (string)value);
}
else
{
value = this.CoerceType(Enum.GetUnderlyingType(targetType), value);
return Enum.ToObject(targetType, value);
}
}
if (value is IDictionary)
{
Dictionary<string, MemberInfo> memberMap;
return this.CoerceType(targetType, (IDictionary)value, out memberMap);
}
if (TypeCoercionUtility.GetTypeInfo(typeof(IEnumerable)).IsAssignableFrom(TypeCoercionUtility.GetTypeInfo(targetType)) &&
TypeCoercionUtility.GetTypeInfo(typeof(IEnumerable)).IsAssignableFrom(TypeCoercionUtility.GetTypeInfo(actualType)))
{
return this.CoerceList(targetType, actualType, (IEnumerable)value);
}
if (value is String)
{
if (Type.Equals (targetType, typeof(DateTime))) {
DateTime date;
if (DateTime.TryParse(
(string)value,
DateTimeFormatInfo.InvariantInfo,
DateTimeStyles.RoundtripKind | DateTimeStyles.AllowWhiteSpaces | DateTimeStyles.NoCurrentDateDefault,
out date)) {
return date;
}
} else if (Type.Equals (targetType, typeof(Guid))) {
// try-catch is pointless since will throw upon generic conversion
return new Guid((string)value);
} else if (Type.Equals (targetType, typeof(Char))) {
if (((string)value).Length == 1) {
return ((string)value)[0];
}
} else if (Equals (targetType, typeof(Uri))) {
Uri uri;
if (Uri.TryCreate ((string)value, UriKind.RelativeOrAbsolute, out uri)) {
return uri;
}
} else if (Type.Equals (targetType, typeof(Version))) {
// try-catch is pointless since will throw upon generic conversion
return new Version ((string)value);
}
}
else if (Type.Equals (targetType, typeof(TimeSpan))) {
return new TimeSpan ((long)this.CoerceType (typeof(Int64), value));
}
//.........这里部分代码省略.........
示例3: IsValidGetMethodType
static bool IsValidGetMethodType (Type type)
{
if (type is TypeBuilder || type is MonoGenericClass)
return true;
/*GetMethod() must work with TypeBuilders after CreateType() was called.*/
if (type.Module is ModuleBuilder)
return true;
if (type.IsGenericParameter)
return false;
Type[] inst = type.GetGenericArguments ();
if (inst == null)
return false;
for (int i = 0; i < inst.Length; ++i) {
if (IsValidGetMethodType (inst [i]))
return true;
}
return false;
}