FluentFs.Core.File.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return Path;
        }

Usage Example

Ejemplo n.º 1
0
 public FileSet Exclude(File path)
 {
     _isInclusion = false;
     ProcessPendings();
     PendingExclude = path.ToString();
     return(this);
 }
All Usage Examples Of FluentFs.Core.File::ToString