I would like to define my own alias for complex type. I'm curious why the compiler does not recognize already imported types. For example:
Works:
using System;
using System.Collections.Generic;
using myCollection = System.Collections.Generic.List
<System.Collections.Generic.Dictionary<string, string>>;
Error:
using System;
using System.Collections.Generic;
using myCollection = List<Dictionary<string, string>>;