private string FromStartPointToDestinationPathFile(MaskrobotTransferLocation startPoint, MaskrobotTransferLocation destination)
        {
            // vs 2013
            // string fileName = $"{this.FilePath}{startPoint.ToText()}{MaskrobotTransferPathFile.FileConnectionString}{destination.ToText()}{this.ExetendedFileName}";
            string fileName = this.FilePath + startPoint.ToText() + MaskrobotTransferPathFile.FileConnectionString + destination.ToText() + this.ExetendedFileName;

            return(fileName);
        }
        private string HomeFile(MaskrobotTransferLocation home)
        {
            // vs 2013
            //string fileName = $"{this.FilePath}{home.ToText()}{this.ExetendedFileName}";
            string fileName = this.FilePath + home.ToText() + this.ExetendedFileName;

            return(fileName);
        }