インデックスで属性にアクセスできますか?
たとえば、Person クラスを取り上げます。このクラスは、属性「BirthNo」と「Gender」を持つことができます。BirthNo の値にアクセスしたい場合、何らかの方法で p.[0].Value と書くことは可能ですか、それとも person.BirthNo.Value と書く必要がありますか?
Person p = new Person
//I have this:
string birthNo = p.BirthNo.Value;
//I want this:
string birthNo = p.[0].Value;