BiasCorrectQ.Program.GetInputData C# (CSharp) 메소드

GetInputData() 정적인 개인적인 메소드

static private GetInputData ( string file, TextFormat fmt ) : List
file string
fmt TextFormat
리턴 List
        internal static List<Point> GetInputData(string file, TextFormat fmt)
        {
            if (fmt == TextFormat.csv)
            {
            return GetCsvData(file);
            }
            if (fmt == TextFormat.vic)
            {
            return GetVicData(file);
            }
            return new List<Point> { };
        }