Exemple #1
0
 public FilePath RemoveAttributes()
 {
     if (Condition)
     {
         fluent.Enum.Values <FileAttributes>().ForEach((a) => ParentThis.RemoveAttributes(a));
     }
     return(ParentThis);
 }
Exemple #2
0
 public FilePath RemoveAttributes(FileAttributes fileAttributes)
 {
     if (Condition)
     {
         return(ParentThis.RemoveAttributes(fileAttributes));
     }
     return(ParentThis);
 }