Я могу получить информацию о типах List<T>
, Dictinary<TK, TVal>
et c. по:
Type.GetType("System.Collections.Generic.List`1[System.String]")
Type.GetType("System.Collections.Generic.Dictionary`2[System.String,System.String[]]")
Но не удается получить информацию о типе LinkedList<T>
:
Type.GetType("System.Collections.Generic.LinkedList`1[System.String]") // Returns NULL
Type.GetType("System.Collections.Generic.LinkedList`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]") // Also returns NULL
Проверка сборки LinkedList<string>
typeof(LinkedList<decimal>).Assembly
Дает:
System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
Использование. NET Стандарт 2.0.3.