当前位置: 首页>>代码示例>>C#>>正文


C# IReflectClass.GetDelegate方法代码示例

本文整理汇总了C#中IReflectClass.GetDelegate方法的典型用法代码示例。如果您正苦于以下问题:C# IReflectClass.GetDelegate方法的具体用法?C# IReflectClass.GetDelegate怎么用?C# IReflectClass.GetDelegate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IReflectClass的用法示例。


在下文中一共展示了IReflectClass.GetDelegate方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: IsNDimensional

		public virtual bool IsNDimensional(IReflectClass a_class)
		{
			if (a_class is GenericArrayClass)
			{
				return false;
			}
			return _delegate.IsNDimensional(a_class.GetDelegate());
		}
开发者ID:superyfwy,项目名称:db4o,代码行数:8,代码来源:GenericArrayReflector.cs

示例2: NewInstance

		public virtual object NewInstance(IReflectClass componentType, int length)
		{
			componentType = componentType.GetDelegate();
			if (componentType is GenericClass)
			{
				return new GenericArray(((GenericClass)componentType).ArrayClass(), length);
			}
			return _delegate.NewInstance(componentType, length);
		}
开发者ID:superyfwy,项目名称:db4o,代码行数:9,代码来源:GenericArrayReflector.cs

示例3: GetComponentType

		public virtual IReflectClass GetComponentType(IReflectClass claxx)
		{
			claxx = claxx.GetDelegate();
			if (claxx is GenericClass)
			{
				return claxx;
			}
			return _delegate.GetComponentType(claxx);
		}
开发者ID:superyfwy,项目名称:db4o,代码行数:9,代码来源:GenericArrayReflector.cs

示例4: GetNetType

    	private static Type GetNetType(IReflectClass clazz)
        {
            if (null == clazz)
            {
                return null;
            }

            NetClass netClass = clazz as NetClass;
            if (null != netClass)
            {
                return netClass.GetNetType();
            }
            IReflectClass claxx = clazz.GetDelegate();
            if (claxx == clazz)
            {
                return null;
            }
            return GetNetType(claxx);
        }
开发者ID:superyfwy,项目名称:db4o,代码行数:19,代码来源:Platform4.cs

示例5: IsCollection

 /// <summary>Determines if a candidate ReflectClass is a collection</summary>
 /// <param name="candidate">candidate ReflectClass</param>
 /// <returns>true  if a candidate ReflectClass is a collection.</returns>
 public virtual bool IsCollection(IReflectClass candidate)
 {
     //candidate = candidate.getDelegate(); 
     var i = _collectionPredicates.GetEnumerator();
     while (i.MoveNext())
     {
         if (((IReflectClassPredicate) i.Current).Match(candidate))
         {
             return true;
         }
     }
     return _delegate.IsCollection(candidate.GetDelegate());
 }
开发者ID:masroore,项目名称:db4o,代码行数:16,代码来源:GenericReflector.cs

示例6: ToNative

		public static Type ToNative(IReflectClass reflectClass)
		{
            NetClass netClass = reflectClass.GetDelegate() as NetClass;
            if(netClass == null)
            {
                return null;
            }
			return netClass.GetNetType();
		}
开发者ID:erdincay,项目名称:db4o,代码行数:9,代码来源:NetReflector.cs


注:本文中的IReflectClass.GetDelegate方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。