Bari.Core.Model.SourceSet.Remove C# (CSharp) Method

Remove() public method

Removes a file from the set
public Remove ( SuiteRelativePath path ) : void
path SuiteRelativePath Path of the file relative to the suite root
return void
        public void Remove(SuiteRelativePath path)
        {
            Contract.Requires(Files.Contains(path));
            Contract.Ensures(!files.Contains(path));

            files.Remove(path);
        }