Hello, Team
What is the best way to migrate scripts with File** functions (FileOpen, FileRead, FileWrite, etc)?
It does not appear that these functions are recognized by SnapDevelop packages, or am I missing a package?
Hello, Team
What is the best way to migrate scripts with File** functions (FileOpen, FileRead, FileWrite, etc)?
It does not appear that these functions are recognized by SnapDevelop packages, or am I missing a package?
That said, MessageBox is a class in System.Window.Forms.
And Michael is exactly right that in a REST Web API you should not be doing UI things like Message Box... it is running on the server and is non-visual. In fact, I question if you should be even doing file functions.
If you plan to have the C# on the client side (i.e. not re-architect your app into Web APIs running on the server side), then you will be faced with rewriting your UI by hand. As I mentioned, the solution will only automate migration of business logic.