Quantcast
Channel: Answers by "RNOVAKOSKY"
Browsing latest articles
Browse All 6 View Live

Answer by RNOVAKOSKY

You can start your process inside one thread. See System.Threading

View Article



Answer by RNOVAKOSKY

As I am thinking, Thread.Sleep(x) will stop the tread, so if you created one thread (see System.threading), because high use of processor you can use Sleep inside your threads if you need. If you do...

View Article

Answer by RNOVAKOSKY

in C++ is possible to do: if ( !(flag1 & flag2) ) ... but in C# Script the operator '!' cannot be applied this form, need to translate to: if ( (flag1 & flag2) == 0) ... so, translation to C#:...

View Article
Browsing latest articles
Browse All 6 View Live




Latest Images