2016-01-25 101 views

回答

8

你並不需要在分配第一<T>

SQLDataList<T> = new List<T>(); 

應該是:

SQLDataList = new List<T>(); 
相關問題