CSVファイルに一連の文字列を追加するC#メソッドを作成しようとしています。これは、このようになりますCSVファイル内の既存の文字列の組み合わせを監視しているときにCSVファイルに文字列を追加する
public void StoreWords(string expectedValue, stringActualValue)
{
///Store expectedValue, actualValue, and a seed value per row in the
/// .csv file. If the combination of the expectValue and actualValue
///does not exist in the .csv file, then initialize a seed value for that
///combination, otherwise increment the seed value for that combination
}
私はcsvファイルを開き、単語の組み合わせを格納に固執しています。どんな助けもありがとう。
質問(複数の質問があります...)が広すぎます。まず「C#でファイルを読み込む方法」を検索します。次に、「C#でファイルに追加する方法」を検索します。そしておそらく "どのようにC#でCSVファイルを解析するか"。次に、あなたが学んだことを試して、あなたが立ち往生したら特定の質問に戻ってください。 –