[유니티 스크립트 소스] csv 파일 읽고 쓰기
2020. 2. 21.
csv 파일을 읽고 쓰는 소스입니다. 1. 소스 1.1 네임스페이스 네임스페이스 using System; using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Text; using System.IO; using System.Linq; 1.2 메서드 메서드 : csv 파일 읽기 public string[,] ReadCsv(string filePath) { string value = ""; StreamReader reader = new StreamReader(filePath, Encoding.UTF8); value = reader.ReadToEnd(); reader..