コード例 #1
0
        public static void FillBytes <T>(this IByteCodec <T> byteCodec, byte[] bytes, T from)
        {
            int offset = 0;

            byteCodec.FillBytes(bytes, ref offset, from);
        }
コード例 #2
0
        public static void ReadBytes <T>(this IByteCodec <T> byteCodec, byte[] bytes, T into)
        {
            int offset = 0;

            byteCodec.ReadBytes(bytes, ref offset, into);
        }