争怎路由网:是一个主要分享无线路由器安装设置经验的网站,汇总WiFi常见问题的解决方法。

C#中使用反射显示程序集的所有分类与属性

时间:2024/7/5作者:未知来源:争怎路由网人气:

BindingFlags.Instance);
      txtMethods.Text=txtMethods.Text+Environment.NewLine+("The number of NonPublic properties in "+myType.Name+" is "+ myPropertyInfo1.Length)+Environment.NewLine;
      // Display all the nonpublic properties.
      txtMethods.Text=txtMethods.Text+getPropertyInfo(myPropertyInfo1);
     }

     txtTypes.Text=result;
    }
    catch(Exception ee)
    {
     throw ee;
    }
    
   }

  }

  /// <summary>
  /// get Method informations from MethodInfo[] Array:
  /// </summary>
  /// <param name="myArrayMethodInfo"></param>
  /// <returns></returns>
  public string getMethodInfo(MethodInfo[] myArrayMethodInfo)
  {
   string methodStr="";
   ///
   ///getinformation for all methods.
   for(int i=0;i<myArrayMethodInfo.Length;i++)
   {
    MethodInfo myMethodInfo = (MethodInfo)myArrayMethodInfo[i];
    methodStr+="Method "+i+" :"+ myMethodInfo.Name+Environment.NewLine;
   }   
   return methodStr;
  }

  /// <summary>
  /// get properties information from PropertyInfo[] Array:
  /// </summary>
  /// <param name="myPropertyInfo"></param>
  /// <returns></returns>
  public string getPropertyInfo(PropertyInfo[] myPropertyInfo)
  {
   string propStr="";
   // Display information for all properties.
   for(int i=0;i<myPropertyInfo.Length;i++)
   {
    PropertyInfo myPropInfo = (PropertyInfo)myPropertyInfo[i];
    propStr+="property "+i+":"+ myPropInfo.Name+" type:"+ myPropInfo.PropertyType+Environment.NewLine;
   }
   return propStr;
  }




关键词:C#中运用反射显示程序集的所有分类与属性




Copyright © 2012-2018 争怎路由网(http://www.zhengzen.com) .All Rights Reserved 网站地图 友情链接

免责声明:本站资源均来自互联网收集 如有侵犯到您利益的地方请及时联系管理删除,敬请见谅!

QQ:1006262270   邮箱:kfyvi376850063@126.com   手机版