是否可以缩短命令,例如......
this.ExampleCommand1.ExampleCommand2.1;
this.ExampleCommand1.ExampleCommand2.2;
this.ExampleCommand1.ExampleCommand2.3;
到
ExampleShorten = "this.ExampleCommand1.ExampleCommand2";
ExampleShorten.1;
ExampleShorten.2;
ExampleShorten.3;
答案 0 :(得分:2)
var ExampleShortened = this.ExampleCommand1.ExampleCommand2;
ExampleShortened.1;
ExampleShortened.2;
ExampleShortened.3;