-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix error when close launched application new approach #107
base: master
Are you sure you want to change the base?
Fix error when close launched application new approach #107
Conversation
with a launcher. That can fix exception Process Not Found in close/quit function. * Fix error when get some attributes.
ef8b13b
to
ff484ed
Compare
516ea8d
to
4ab296d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@quangnt Hi, looks great, could you please remove changes in CHANGELOG.md
(changes automatically at release)
@NickAb join us to review, please |
var intArray = obj as Int32[]; | ||
if (intArray != null) | ||
{ | ||
return string.Join(",", intArray); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do integer arrays need special serialization? By default the should be serialized as json object like other arrays, dictionaries, etc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Last time, I had problem when get specific property of GUI element which returns array of integers (not remember exactly its type, System.Int32[] or System.Int64[]) and throws exception that type of object is not serialized object. So I force it as Int32[] and put result as string.
No description provided.