Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on an JSON API client. The goal is to create a base type with the methods ToJSON(..) and FromJSON(..), which subsequent classes can inherit from.

ToJSON(..) is relatively straight forward, following a blog article by Scott Guthrie (http://bit.ly/Ppgd3). I am struggling with the FromJSON(..). Here is the basic code:

public class BaseType
{
    public virtual void FromJson(System.Type type, string input)
    {
        // What? How?
    }

    public virtual string ToJson()
    {
        JavaScriptSerializer serial = new JavaScriptSerializer();
        return serial.Serialize(this);
    }

    public virtual string ToJson(string verb)
    {
        JavaScriptSerializer serial = new JavaScriptSerializer();
        string value = serial.Serialize(this);
        return string.Concat("{", "\"", verb.Trim(), "\":", value, "}");
    }
}

Now the way to do this is with Deserialize(..) and that works outside the class. My question is how to get the Deserialize(..) command below to work within the above class, under FromJSON(..), in a way that is inheritable.

public class InheritedObject : BaseType { }

System.Web.Script.Serialization.JavaScriptSerializer serial = new System.Web.Script.Serialization.JavaScriptSerializer();
InheritedObject foo = serial.Deserialize<InheritedOjbect>(jsonString);

The language is C#, framework is .NET 4.0, and IDE is Visual Studio 2012.

share|improve this question
The from* methods are typically static, since they create a new object from the input – Miserable Variable Feb 5 at 23:52

1 Answer

up vote 1 down vote accepted

Generics would probably help in this case.

public virtual T FromJson<T>(string input)
{
    JavaScriptSerializer serial = new JavaScriptSerializer();
    return serial.Deserialize<T>(input);
}

You would have to define T at the class level like so:

public class BaseType<T> where T : new()

Then inherit like so:

public class InheritedObject : BaseType<InheritedObject>

Or, make the method static:

public static T FromJson<T>(string input) where T : new()
{
    JavaScriptSerializer serial = new JavaScriptSerializer();
    return serial.Deserialize<T>(input);
}
share|improve this answer
Which object is the virtual fromJson called on? It only makes sense to make it static – Miserable Variable Feb 5 at 23:59
1  
I gave both options in case we don't have all the facts, but from what I can see in the limited code provided, static makes more sense. – Chris Gessler Feb 6 at 0:07
Beautiful. Thank you. – J Wolfgang Goerlich Feb 6 at 1:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.