たとえば、10 個のプロパティを持つオブジェクトのリストがあり、これらのオブジェクトのリストを返したいが、10 個のプロパティのうち 3 個しか使用できない場合、どうすればよいでしょうか?
public class Example
{
public int attr1 {get;set;}
public int attr2 {get;set;}
public int attr3 {get;set;}
public int attr4 {get;set;}
public int attr5 {get;set;}
}
return ExampleList; //have the return value be a list with only attr1, 2, and 3 visible.