What is a byte[] array?

前端 未结 6 1794
盖世英雄少女心
盖世英雄少女心 2021-02-13 11:49

What is a byte array is in the context of .NET framework?

I am familiar with standard definitions like array and byte and very fam

6条回答
  •  故里飘歌
    2021-02-13 12:29

    A byte[] array is simply an array of raw data. For example, a file of size 2000 bytes can be loaded into a byte[] array of 2000 elements.

提交回复
热议问题