私は以下のような機能を持っています。
private IList<ContactList> getEmptyRow()
{
var _ContactList = new List<ContactList>();
_ContactList.Add(new ContactList()
{
Email = string.Empty,
Name = string.Empty
});
return _ContactList;
}
クラスContactList
を次のように変更したい
private IList<T> getEmptyRow() { ..... T.Add(new T()....
これは可能ですか?そしてどうやって ?
すべての提案をいただければ幸いです。