Powershell Generic Collections - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T13:34:19Z http://stackoverflow.com/feeds/question/184476 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/184476/powershell-generic-collections 1 Powershell Generic Collections EBGreen 2008-10-08T19:34:15Z 2008-10-09T03:54:42Z <p>I have been pushing into the .Net framework in powershell and I have hit something that I don't understand. This works fine:</p> <pre><code>13# $foo = New-Object "System.Collections.Generic.Dictionary``2[System.String,System.String]" 14# $foo.Add("FOO", "BAR") 15# $foo Key Value --- ----- FOO BAR </code></pre> <p>This however does not:</p> <pre><code>16# $bar = New-Object "System.Collections.Generic.SortedDictionary``2[System.String,System.String]" New-Object : Cannot find type [System.Collections.Generic.SortedDictionary`2[System.String,System.String]]: make sure t he assembly containing this type is loaded. At line:1 char:18 + $bar = New-Object &lt;&lt;&lt;&lt; "System.Collections.Generic.SortedDictionary``2[System.String,System.String]" </code></pre> <p>THey are both in the same assembly, so what am I missing?</p> http://stackoverflow.com/questions/184476/powershell-generic-collections/185174#185174 3 Answer by Steven Murawski for Powershell Generic Collections Steven Murawski 2008-10-08T22:30:19Z 2008-10-08T22:30:19Z <p>There are some issues with Generics in PowerShell. Lee Holmes, a dev on the PowerShell team posted <a href="http://www.leeholmes.com/blog/CreatingGenericTypesInPowerShell.aspx" rel="nofollow">this script</a> to create Generics.</p> <p>I don't have time to test right now, but I'll try it out this evening.</p> http://stackoverflow.com/questions/184476/powershell-generic-collections/185885#185885 4 Answer by tomasr for Powershell Generic Collections tomasr 2008-10-09T03:54:42Z 2008-10-09T03:54:42Z <p>Dictionary is not defined in the same assembly as SortedDictionary. One is in mscorlib and the other in system.dll. </p> <p>Therein lies the problem. The current behavior in powershell is that when resolving the generic parameters specified, if the types are not fully qualified type names, it sort of assumes that they are in the same assembly as the generic type you're trying to instantiate.</p> <p>In this case, it means it's looking for System.String in System.dll, and not in mscorlib, so it fails.</p> <p>The solution is to specify the fully qualified assembly name for the generic parameter types. It's extremely ugly, but works:</p> <pre><code>$bar = new-object "System.Collections.Generic.Dictionary``2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]" </code></pre>