BSPGenerationTools.CopyJob.RenameRule.Matches C# (CSharp) Method

Matches() private method

private Matches ( string targetFile ) : bool
targetFile string
return bool
            internal bool Matches(string targetFile)
            {
                return StringComparer.InvariantCultureIgnoreCase.Compare(targetFile, OldName) == 0;
            }
CopyJob.RenameRule