public void BenchmarkIncrementByIn(int limit)
        {
            SixteenBitStruct sixteenBitStruct = new SixteenBitStruct();
            int counter = 0;

            do
            {
                IncrementIn(sixteenBitStruct);
                counter++;
            }while (limit != counter);
        }
 private void IncrementByRef(ref SixteenBitStruct sixteenBitStruct)
 {
     double sum = sixteenBitStruct.D1 + sixteenBitStruct.D2;
 }