Укоротить команды? - PullRequest
       4

Укоротить команды?

0 голосов
/ 06 декабря 2009

Можно ли сократить команды, например ...

this.ExampleCommand1.ExampleCommand2.1;
this.ExampleCommand1.ExampleCommand2.2;
this.ExampleCommand1.ExampleCommand2.3;

до

ExampleShorten = "this.ExampleCommand1.ExampleCommand2";
ExampleShorten.1;
ExampleShorten.2;
ExampleShorten.3;

1 Ответ

2 голосов
/ 06 декабря 2009
var ExampleShortened = this.ExampleCommand1.ExampleCommand2;
ExampleShortened.1;
ExampleShortened.2;
ExampleShortened.3;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...