I need to call or at least pass parameters into C# function from within VBScript function (or suitable workaround) on Microsoft Azure Website Hosting i.e.:
Function VBScriptFnc(param_1, param_2, param_3)
Dim flag;
flag = 1
'call the C# function or somehow pass parameters into C# function'
csharpFunction(param_1, param_2, param_3)
VBScriptFnc = flag
End Function