是否可以只讀一個數組。這樣數組的設置值將不被允許。是否有可能在c#中聲明一個數組爲readonly?
這裏我所用只讀關鍵字試過聲明數組。然後我檢查該數組是否只讀使用IsReadOnly屬性。但它永遠不會返回true。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PrivateExposeConsoleApp
{
class Program
{
private static readonly int[] arr = new int[3] { 1,2,3 };
static void Main(string[] args)
{
// Create a read-only IList wrapper around the array.
IList<int> myList = Array.AsReadOnly(arr);
try
{
// Attempt to change a value of array through the wrapper.
arr[2] = 100;
Console.WriteLine("Array Elements");
foreach (int i in arr)
{
Console.WriteLine("{0} - {1}", i + "->", i);
}
Console.WriteLine("---------------");
Console.WriteLine("List Elements");
foreach (int j in myList)
{
Console.WriteLine("{0} - {1}", j + "->", j);
}
// Attempt to change a value of list through the wrapper.
myList[3] = 50;
}
catch (NotSupportedException e)
{
Console.WriteLine("{0} - {1}", e.GetType(), e.Message);
Console.WriteLine();
}
//if (arr.IsReadOnly)
//{
// Console.WriteLine("array is readonly");
//}
//else
//{
// for (int i = 0; i < arr.Length; i++)
// {
// arr[i] = i + 1;
// }
// foreach (int i in arr)
// {
// Console.WriteLine(i);
// }
//}
Console.ReadKey();
}
}
}
這裏看到我的評論部分。如果我取消註釋,我的arr永遠不會變爲只讀。在聲明中,我清楚地將arr定義爲只讀數據{1,2,3}。我不希望這個價值被重新發現。它應該始終只有1,2,3。
http://msdn.microsoft.com/en-us/library/53kysx7b(v=vs.110).aspx –