Adding to a container with += vs. ConIns()
While adding data to the end of a container there can be large savings by using += rather than ConIns. Try the code below and compare the results: static void Containertest(Args _args) { int ticks; Container con; Random random = new Random(); int myrandom; int i; ; //Start on […]