Monobjc.Tools.Xcode.PBXGroup.Find C# (CSharp) Method

Find() public method

Finds the specified nature.
public Find ( PBXElementType nature, String name ) : PBXFileElement
nature PBXElementType The nature.
name String The name.
return PBXFileElement
        public PBXFileElement Find(PBXElementType nature, String name)
        {
            return this.children.FirstOrDefault(c => c.Nature == nature && String.Equals(c.Name, name));
        }