Hi.
I'm trying to use the using directive like a typedef in C++. Can I re-write the following to be legal in C# in any way ?
.....
using UidListType = System.Collections.Generic.List<UidType>;
using BodyTableType = System.Collections.Generic.Dictionary<string, UidListType>;
using FunctionTableType = System.Collections.Generic.Dictionary<string, BodyTableType>;
....
In other words, can a Using directive be dependent on the Using directive above it ?
I'm trying to use the using directive like a typedef in C++. Can I re-write the following to be legal in C# in any way ?
.....
using UidListType = System.Collections.Generic.List<UidType>;
using BodyTableType = System.Collections.Generic.Dictionary<string, UidListType>;
using FunctionTableType = System.Collections.Generic.Dictionary<string, BodyTableType>;
....
In other words, can a Using directive be dependent on the Using directive above it ?