c# - Shorten commands? -


क्या कमांडों को कम करना संभव है, जैसे ...

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

से

  उदाहरणशॉर्टन = "this.ExampleCommand1.ExampleCommand2"; ExampleShorten.1; ExampleShorten.2; ExampleShorten.3;  

?

  var उदाहरण = यह.उदाहरण कमांड 1 .ExampleCommand2; ExampleShortened.1; ExampleShortened.2; ExampleShortened.3;  

Comments

Popular posts from this blog

Is there an open source WebSockets (JavaScript) XMPP library? -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -

iphone - How do I make a UIPickerView in a UIActionSheet -