How can I reproduce this in ScriptSharp (C#):

myObject = function(input) {

}

myObject.prototype = new myOtherObject;
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

When you're using script# you're using the c# syntax to create classes, derive classes etc.

So simply define your class myObject and have it derive from your other class myOtherObject, and let the compiler and bootstrapper script (mscorlib.js) set up the inheritance at runtime.

The whole point is to have a natural OOP syntax, rather than work with a simulation by manually chaining prototypes.

Hope that helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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