Command.ConcreteCommand.Execute C# (CSharp) Method

Execute() public method

public Execute ( ) : void
return void
        public override void Execute()
        {
            receiver.Action();
        }

Usage Example

コード例 #1
0
 public void ExecuteCommand()
 {
     if (Concrete != null)
     {
         Concrete.Execute();
     }
 }