System.CodeDom.Compiler.TempFileCollection.KeepFile C# (CSharp) Method

KeepFile() private method

private KeepFile ( string fileName ) : bool
fileName string
return bool
        private bool KeepFile(string fileName)
        {
            object keep = _files[fileName];
            return keep != null ? (bool)keep : false;
        }