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'd like to expose a class I've written in C# down to the javascript equivalent.

for example I have a class like:

// C# class to represent an Appriaser
public class Appraiser
{
    public Appraiser(appraiserId, appraiserName)
    {
         AppraiserId = appraiserId;
         AppraiserName = appraiserName;
    }
    public int AppraiserId { get; set; }
    public string AppraiserName { get; set; }
}

and I would like the ability to automatically generate a version of this class in javascript

// javascript class to represent an Appraiser
function Appraiser(appraiserId, appraiserName) {
    var self = this;
    self.appraiserid= appraiserId;
    self.appraisername= appraisername;
}

Is this possible with JSON.NET or another method?

share|improve this question
... thats not very helpful. – Mr. Young Feb 12 at 21:00

2 Answers

Yes and no. But more "No" than "Yes'.

There's nothing which will directly create javascript classes from your .NET classes. You can pass the data back and forth, which is what @jbabey's link is about, but you can't use them interchangeably.

You could write C# code which would write classes to the page as they render (so that you can convert the JSON back to an object on the other end) by using reflection to iterate over all the public properties and constructors, but you still wouldn't be able to copy functionality between them.

share|improve this answer
I wasn't really looking for the functionality of methods to get copied. I'd be happy with just the properties. I was taking a look at Script# as a candidate just a few minutes ago but haven't tried it yet. Since .NET provides functionality like this already with C# to IL, F# to IL, and VB.NET to IL I would had thought the same thing might had be available to C# to javascript. – Mr. Young Feb 12 at 22:23

You can try JSIL. It will allow You to transform from .Net IL to JavaScript.

share|improve this answer

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.