Server.Mobiles.GlobalTownCrierEntryList.RemoveEntry C# (CSharp) Méthode

RemoveEntry() public méthode

public RemoveEntry ( TownCrierEntry tce ) : void
tce TownCrierEntry
Résultat void
		public void RemoveEntry( TownCrierEntry tce )
		{
			if ( m_Entries == null )
				return;

			m_Entries.Remove( tce );

			if ( m_Entries.Count == 0 )
				m_Entries = null;
		}
	}