We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Describe what you were trying to get done. class logger { public static void error(params object[] msgs) { // } }
In Pyscript: logger.error("helloworld")
the parameter msgs in C# stack, will become ['h', 'e', 'l', ..., 'd']
Conclusion: parameter is not converted correctly.