static void Main(string[] args)
{
StreamReader sr = new StreamReader("Test.csv", Encoding.GetEncoding("euc-kr"));
while (!sr.EndOfStream)
{
string s = sr.ReadLine();
string[] temp = s.Split(',');
Console.WriteLine("{0},{1},{2}", temp[0], temp[1], temp[2]);
}
}
엑셀에 A셀은 국어 B셀은 영어 C셀은 수학이고 그 아래에는 점수가 들어가 있습니다.
csv파일 불러왔으니 코딩을 통해 D셀에 A+B+C의 합을 내서 CSV파일에 쓰기를 하고 싶은데 어떻게 해야할까요???
c# 선배님들의 조언을 구해봅니다ㅠㅠ