これは私のコードです:
List<string> deviceScreenshot=new List<string>();
List<string> fiddlerScreenshot=new List<string>();
if(string.IsNullOrEmpty(summary[3].ToString())==false)
deviceScreenshot=summary[3];
else
deviceScreenshot="Screenshot not found";
if(string.IsNullOrEmpty(summary[4].ToString())==false)
fiddlerScreenshot=summary[4];
else
fiddlerScreenshot="Screenshot not found";
次のエラー メッセージが表示されます。
タイプ 'string' を 'System.Collections.Generic.List' に暗黙的に変換できません (CS0029) - D:\automation\OmnitureStatistics\OmnitureStatistics\TeardownUserCode.cs:144,23
これの解決策を教えてください!!