Choreoh.DanceRoutine.getSaveDestinationName C# (CSharp) Method

getSaveDestinationName() public static method

public static getSaveDestinationName ( String songFilename ) : String
songFilename String
return String
        public static String getSaveDestinationName(String songFilename)
        {
            return Path.Combine(getSaveDestinationFolder(songFilename), Path.GetFileNameWithoutExtension(songFilename) + ".dat");
        }