简体   繁体   中英

Intellisense Doesn't Display Custom Class Members

I'm writing a deserializer like this:

public class MyObjectConverter : JavaScriptConverter
{
 public override object 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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM