I saw a lot of answers to the typedef problem in C # that I used, so I have:
using Foo = System.Collections.Generic.Queue<Bar>;
and it works well. I can change the definition (esp. Change Bar => Zoo, etc.) and everything that uses Foo changes. Fine.
Now I want this to work:
using Foo = System.Collections.Generic.Queue<Bar>; using FooMap = System.Collections.Generic.Dictionary<char, Foo>;
but C # doesnβt look like Foo in the second line, although I defined it in the first.
Is there a way to use an existing alias as part of another?
Edit: I am using VS2008
c # alias typedef
quamrana
source share