コード例 #1
0
        public void ReadBinary1DArrayTest()
        {
            List <byte[]> values = new List <byte[]>()
            {
                new byte[] { 0x01, 0x02, 0x32 },
                new byte[] { 0x01, 0x02 },
            };

            DeserializationHelper.BinaryArrayHelper(values);
        }
コード例 #2
0
 /// <summary>
 /// Helps test binary arrays for both the non-nullable and nullable case.
 /// </summary>
 /// <param name="values">The values.</param>
 public static void BinaryArrayHelper(List <byte[]> values)
 {
     DeserializationHelper.BinaryArrayHelper(values, false);
     DeserializationHelper.BinaryArrayHelper(values, true);
 }