Inheritance: System.Attribute
コード例 #1
0
ファイル: Documentation.cs プロジェクト: FlorianRappl/YAMP
 HelpExample GetExample(ExampleAttribute attribute)
 {
     var help = new HelpExample();
     help.Example = attribute.ExampleCode;
     help.Description = GetLocalized(attribute.DescriptionKey);
     help.IsFile = attribute.IsFile;
     return help;
 }