ARCed.Scripting.Script.GetFullPath C# (CSharp) Méthode

GetFullPath() public méthode

Uses the index and title of the script to create a unique filename
public GetFullPath ( ) : string
Résultat string
        public string GetFullPath()
        {
            string filename = String.Format("{0:d4}-{1}.rb", this._index, this._title);
            return Path.Combine(Project.ScriptsDirectory, filename);
        }