vote up 8 vote down star
3

How can I do the following in C#? What is the right way to write the first line of this code snippet?

using KVP<K, V> = System.Collections.Generic.KeyValuePair<K, V>;

class C { KVP<int, string> x; }
flag

76% accept rate

1 Answer

vote up 15 vote down check

You can't, basically. You can only use fixed aliases, such as:

using Foo = System.Collections.Generic.KeyValuePair<int, string>;

class C { Foo x; }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.