How to create an alias for System.Int[]
?
e.g.
using MyAlias = System.Int32[];
This wont compile.
But this will compile:
using MyAlias = System.Collections.Generic.List<System.Tuple<int, string, int>>;
...
public static MyAlias Foo()
{
...
}