首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > 其他 > xmldoc-reflector

xmldoc-reflector

  • 资源大小:19.42 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: Documentation DotNet

资 源 简 介

Introduction XmlDocReflector allows access to the generated XML documentation of a .NET assembly during runtime. System Requirements .NET 2.0 or above Usage Add the assembly XmlDocReflectorLib.dll to the project references Add XmlDocReflectorLib to the using directives using XmlDocReflectorLib; Get XML documentation of MemberInfo (which is a base class of PropertyInfo) instance, e.g. PropertyInfo pi = this.GetType().GetProperty("TestProperty");// Using .NET 3.5 libraryXmlNode sumary = pi.GetXmlDoc().Summary;XmlNode remarks = pi.GetXmlDoc().Remarks;// Using .NET 2.0 libraryXmlNode sumary = XmlDocReflector.GetXmlDoc(pi).Summary;XmlNode remarks = XmlDocReflector.GetXmlDoc(pi).Remarks;

文 件 列 表

0.0.1
Build
Source
Tests
XmlDocReflector.sln
VIP VIP
0.169579s