在 C# 中,可以使用對象的屬性和索引器來獲取其值。
對象名.Name
來獲取其值。class Person
{
public string Name { get; set; }
}
Person person = new Person();
person.Name = "John";
string name = person.Name; // 獲取 Name 屬性的值
對象名[參數]
來獲取其值。class MyList
{
private string[] items = new string[10];
public string this[int index]
{
get { return items[index]; }
set { items[index] = value; }
}
}
MyList list = new MyList();
list[0] = "Item 1";
string item = list[0]; // 獲取索引為 0 的值
這些是常見的獲取對象值的方法,可以根據對象的特定屬性和索引器來選擇適合的方法。