ARKBreedingStats.Form1.saveCollection C# (CSharp) 메소드

saveCollection() 개인적인 메소드

private saveCollection ( ) : void
리턴 void
        private void saveCollection()
        {
            if (currentFileName == "")
                saveNewCollection();
            else
            {
                saveCollectionToFileName(currentFileName);
            }
        }
Form1