ARCed.Scripting.Script.GetFullPath C# (CSharp) Method

GetFullPath() public method

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