コード例 #1
0
 public MissingParameterEventArgs(DiscordCommand command, ParameterAttribute param)
 {
     Command   = command;
     Parameter = param;
 }
コード例 #2
0
ファイル: CommandParameter.cs プロジェクト: skizap/Anarchy
 public CommandParameter(ParameterAttribute attr, PropertyInfo property) : base(attr.Name, attr.Optional)
 {
     Property = property;
 }