无法找到名称空间名称'p'(您是否缺少using指令或程序集引用?)

时间:2014-03-05 12:24:53

标签: c# generics

我正在使用泛型方法来反序列化xml文档取决于包含。它试图对所有可能的案件进行反序列化。

这是我的代码段:

 private static Dictionary<Type, byte> getMessageDictionary() {
     Dictionary<Type, byte> typesIO = new Dictionary<Type, byte>();
     typesIO.Add(typeof (Type1), 1);
     typesIO.Add(typeof (Type2), 11);
     typesIO.Add(typeof (Type3), 12);

     return typesIO;
 }

 public static object GetContainer(XmlDocument xd) {
     foreach(KeyValuePair<Type, byte> item in getMessageDictionary()) {
         try {
             Type p = item.Key;
             var z = Utils.XmlDeserialize<p> (xd.OuterXml);

             return z;
         } catch {
             continue;
         }
     }
     return null;
 }

但编译器说无法找到类型或命名空间名称p。我是否错过using指令或汇编参考?出了什么问题?

1 个答案:

答案 0 :(得分:5)

p是一个包含对Type实例的引用的变量,但您尝试将其用作类型参数。

要做你想做的事,你需要使用反射调用方法:

Type p = item.Key;
var method = typeof(Utils).GetMethod("XmlDeserialize").MakeGenericMethod(p);
var z = (XmlDocument)method.Invoke(null, new object[] { xd.OuterXml });