What is a byte[] array?

前端 未结 6 1703
盖世英雄少女心
盖世英雄少女心 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

    It's an array of byte. It's binary data - unstructured (in terms of the language at that point in time - different than meaningless!) data which can be arbitrarily long.

    Think of loading a picture from a file. You would read the file into a byte[] before working with the image.

提交回复
热议问题