开发者

Intellisense Doesn't Display Custom Class Members

开发者 https://www.devze.com 2023-03-03 00:44 出处:网络
I\'m writing a deserializer like this: public class MyObjectConverter : JavaScriptConverter { public override objec开发者_如何学Got Deserialize(IDictionary<string, object> dictionary, Type typ

I'm writing a deserializer like this:

public class MyObjectConverter : JavaScriptConverter
{
 public override objec开发者_如何学Got Deserialize(IDictionary<string, object> dictionary, Type type, JavaScriptSerializer serializer)
 {    
    MyObjectClass obj = new MyObjectClass();
    if (dictionary.ContainsKey("name"))
    {
      obj.
    }

I have a using statement that links the MyObjectClass with the proper namespace but for some reason that I don't understand, I'm not getting the properties of the object in the intellisense. Any suggestions welcome.

Thanks.


Save your work and try restarting Visual Studio

0

精彩评论

暂无评论...
验证码 换一张
取 消