本文整理汇总了C#中MethodBase.GetCustomAttributes方法的典型用法代码示例。如果您正苦于以下问题:C# MethodBase.GetCustomAttributes方法的具体用法?C# MethodBase.GetCustomAttributes怎么用?C# MethodBase.GetCustomAttributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MethodBase
的用法示例。
在下文中一共展示了MethodBase.GetCustomAttributes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetObsoleteCount
private static int GetObsoleteCount(MethodBase mb)
{
#if STUB_GENERATOR
return mb.__GetCustomAttributes(JVM.Import(typeof(ObsoleteAttribute)), false).Count;
#else
return mb.GetCustomAttributes(typeof(ObsoleteAttribute), false).Length;
#endif
}
示例2: getPostprocessScriptName
static string getPostprocessScriptName( MethodBase method )
{
object[] attributes = method.GetCustomAttributes( typeof( MenuItem ), false );
foreach( System.Object attribute in attributes )
{
MenuItem item = (MenuItem)attribute;
// we want the third segment
string[] parts = item.menuItem.Split( new char[] {'/'} );
return string.Format( "PostprocessBuildPlayer_AdWhirl{0}", parts[2] );
}
throw new Exception( "Could not extract post process script name from MethodBase" );
}