Example #1
0
        public void Int64Test( )
        {
            SoftBuffer softBuffer = new SoftBuffer(1000);

            softBuffer.SetValue(new long[] { 123456, -12345, 231412 }, 328);

            long[] read = softBuffer.GetInt64(328, 3);
            Assert.IsTrue(read[0] == 123456 && read[1] == -12345 && read[2] == 231412);
        }