C# でカンマ区切りの文字列を分割し、2 つの変数に保存する必要があります。C# 関数は次のとおりです。
public int InsertLogDetails(string RunIDStartTime, int Distribution_ID, List<string> additions, List<string> removals, bool status, string ErrorMessage)
{
int Run_ID=0;
DateTime StartTime=DateTime.Now;
//Needs to split RunIDStartTime and needs to save it in Run_ID and StartTime
}
RunIDStartTime は、Run_ID ans StartTime の値を保持します (例: 5、2013 年 1 月 23 日 9:31AM)。
誰でも助けてください。前もって感謝します。