(Dictionary<string, string> args)
| 140 | } |
| 141 | |
| 142 | static void PrintNamespaces(Dictionary<string, string> args) |
| 143 | { |
| 144 | string customWinMdDir = ValueOrNull(args, "customwinmddir"); |
| 145 | |
| 146 | foreach (string str in Reflector.GetNamespaces(args["winmd"], customWinMdDir)) |
| 147 | { |
| 148 | Console.WriteLine(str); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | static string ValueOrNull(Dictionary<String, String> args, string key) |
| 153 | { |
nothing calls this directly
no test coverage detected