public class ABSInfo
{
public decimal CodeCoveragePercentage { get; set; }
public TestInfo TestInformation { get; set; }
}
而且我有一個對象數組說 「SourceType中」
public object[] SourceType { get; set; }
我想對象數組(SoiurceType)到ABSInfo []轉換。
我想作爲
ABSInfo[] absInfo = Array.ConvertAll(SourceType, x => (ABSInfo)x);
但錯誤
無法轉換類型 'WindowsFormsApplication1.TestInfo' 的對象鍵入 'WindowsFormsApplication1.ABSInfo'。
怎麼辦轉換?
編輯:
public class TestInfo
{
public int RunID { get; set; }
public TestRunStatus Status { get; set; }
public string Description { get; set; }
public int TotalTestCases { get; set; }
public int TotalTestCasesPassed { get; set; }
public int TotalTestCasesFailed { get; set; }
public int TotalTestCasesInconclusive { get; set; }
public string ReportTo { get; set; }
public string Modules { get; set; }
public string CodeStream { get; set; }
public int RetryCount { get; set; }
public bool IsCodeCoverageRequired { get; set; }
public FrameWorkVersion FrameworkVersion { get; set; }
public string TimeTaken { get; set; }
public int ProcessID { get; set; }
public int GroupID { get; set; }
public string GroupName { get; set; }
}
什麼是'TestInfo'? – 2013-04-09 12:36:51
你的'ABSInfo'數組中似乎有'TestInfo'? – 2013-04-09 12:37:03
這是另一個班級..看到更新 – 2013-04-09 12:37:25