You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried running classmethod with parameters in debug of launching mode.
VSCode will appear text box for parameters.
When I inputted Japanese and Alphabet in it, p1 was garbled in debug window (VARIABLED and hover text).
My Class is below:
Class Test.Debug
{
ClassMethod test1(p1 As %String, p2 As %String) As %String
{
set modori="これは日本語です(this is Japanese)= " _p1
write "this is Alphabet = ",p2,!
return modori
}
}
I inputted parameters like this:
"あいうえお","abc"
When I have tried same classmethod in attach mode, there is no problem.