Created
April 18, 2017 15:36
-
-
Save rionmonster/57d924dfe5afa4951fb0cf10691b2f4d to your computer and use it in GitHub Desktop.
Should this be possible?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This throws a "The type or namespace name 'Dictionary<,>' could not be found" compilation exception | |
Config.Settings = new Dictionary<string, string>() | |
{ | |
{ "Foo", "Bar" } | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've tried adding the appropriate using statements (e.g.
using System.Collections.Generic
, etc.) but it continually seems to throw this exception. Any ideas?