예제 #1
0
파일: KeyModel.cs 프로젝트: MOXFan/Keysmith
        public List <int> GetCutsList()
        {
            List <int> output = new List <int>();

            char[] cutsArray = Cuts.ToCharArray();
            foreach (char currentChar in cutsArray)
            {
                output.Add(int.Parse(currentChar.ToString()));
            }
            return(output);
        }