I am working with c++ cli.
Writing "System::Collections::Generic::IList" for IList every time is difficult, makes code long and difficult to read.
It is dicussed here enter link description here
using IList = System::Collections::Generic::IList; // Didn't work.
typedef System::Collections::Generic::IList Ilist; // Didn't work also.
How can I make alias for it?