OpenIDE.CodeEngine.Core.Caching.TypeCache.GetProject C# (CSharp) Method

GetProject() public method

public GetProject ( string fullpath ) : Project
fullpath string
return OpenIDE.Core.Caching.Project
        public Project GetProject(string fullpath)
        {
            lock (_projects)
            {
                return _projects.FirstOrDefault(x => x.File.Equals(fullpath));
            }
        }