Aura.Channel.World.Dungeons.DungeonManager.Get C# (CSharp) Метод

Get() приватный Метод

Returns first dungeon that matches the predicate, or null.
private Get ( bool>.Func predicate ) : Dungeon
predicate bool>.Func
Результат Dungeon
		private Dungeon Get(Func<Dungeon, bool> predicate)
		{
			lock (_syncLock)
				return _dungeons.Values.FirstOrDefault(predicate);
		}