コード例 #1
0
ファイル: Help.cs プロジェクト: chickenlegs0/Luka
 public HelpAttribute(string methodName, HelpType type, HelpPosition position, string message)
 {
     this.methodName = methodName;
     this.type       = type;
     this.position   = position;
     this.message    = message;
 }
コード例 #2
0
 public HelpAttribute(string methodName, HelpType type, HelpPosition position, string message)
 {
     this.methodName = methodName;
     this.type = type;
     this.position = position;
     this.message = message;
 }
コード例 #3
0
ファイル: Help.cs プロジェクト: chickenlegs0/Luka
 public HelpAttribute(HelpType type, HelpPosition position, string message)
     : this("", type, position, message)
 {
 }
コード例 #4
0
 public HelpAttribute(HelpType type, HelpPosition position, string message)
     : this("", type, position, message)
 {
 }
コード例 #5
0
 public HelpItem(HelpType type, string message, HelpPosition position)
 {
     this.type     = type;
     this.message  = message;
     this.position = position;
 }