Tagged Questions
9
votes
4answers
709 views
why not use unmanaged safe code in c#
There is an option in c# to execute code unchecked. It's generally not advised to do so, as managed code is much safer and it overcomes a lot of problems.
However I am wondering, if you're sure your ...
2
votes
1answer
392 views
How to prevent my executable being treated from AV like bad or virus?
I'm creating a piece of software, that will run on windows and will act like launcher for the game, to serve as an auto-updater and file verifier in client siede PC.
One thing I don't understand, why ...