我有兩個數據類型:如何將List <SomeType>轉換爲列表<AnotherType>?
class MyDataType {
public int Id;
private int Field;
public String AnotherFieldOrProperty;
// + there are some methods
}
class MyDataTypeDescriptor {
public int Id;
public String Description;
}
我需要轉換List<MyDataType>
到List<MyDataTypeDescriptor>
這樣一種方式: MyDataTypeDescriptor.Id = MyDataType.Id
MyDataTypeDescriptor.Description = MyDataType.ToString()
;
我想C#可以在一行代碼中非常簡單快速地完成,但是我不知道如何,因爲我不熟悉這種高級技術。請有人幫助我嗎?
感謝