I have code in html:
function analyze(t){
t=t.split("");
t=t.slice(3);
t=t.slice(2);
return t.join("")
}
And i download this code from the internet(the code is changing and it make some changes on a string).
And i want to know if there is a way to run this code in C# without WebView and in synchronous. The code is in javascript.