Intellisense Doesn't Display Custom Class Members
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
精彩评论