1
我需要您的幫助以最有效的方式解決此問題。自定義列表到數組陣列
我有一個自定義對象列表。
var customList = new List<Custom>();
public class Custom
{
public DateTime Date {get;set;}
public double Value {get;set;}
}
我想我customList轉換爲數組的數組,這樣在UTC格式的日期:
[
[Date.UTC(1970, 9, 21), 0],
[Date.UTC(1971, 3, 11), 5.4],
[Date.UTC(1971, 5, 20), 11.2],
[Date.UTC(1973, 11, 09), 3.0]
]
那你試試? –
@diiN_「最有效的方法」是讓別人爲你編碼。你沒看過那部分嗎? :-p – SJuan76