Represents a strongly-typed, read-only collection of elements.
Think of the following code: static int Main() { byte[] data = File.ReadAllBytes("anyfile"); SomeMethod(data); ... } static void SomeMethod(byte[] data) { …
c# bytearray readonly readonly-collectionHere is this sample code: static class Store { private static List<String> strList = new List<string>(); …
c# list hashset generic-collections readonly-collection