The C++ sample generates a random number, uses its lowest bit and throws away the rest. The lowest bit is then used to pick either -1 or 1.
In C#, the equivalent is as follows.
new Random().Next(0, 2) * 2 - 1
Important: If you do this in a loop, store the instance of Random somewhere and only call Next in the loop, not the constructor again. This is not only a performance optimization. You would otherwise see sequences of identical bits of duration of approximately 100 ms, so calls to the parameterless constructor of Random should be few and far between, ideally one per your app's startup.