-
Hi |
Beta Was this translation helpful? Give feedback.
Answered by
ackava
Aug 20, 2022
Replies: 1 comment
-
You can add method in To do it in C# you can do following, var m = new JSModuleContext( ... );
m["Object"]["prototype"]["extensionMethod"] = new JSFunction((in Arguments a) => {
return JSUndefined.Value;
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ZverGuy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can add method in
Object.prototype
...To do it in C# you can do following,