Server.Regions.BaseRegion.ToString C# (CSharp) Méthode

ToString() public méthode

public ToString ( ) : string
Résultat string
		public override string ToString()
		{
			if ( this.Name != null )
				return this.Name;
			else if ( this.RuneName != null )
				return this.RuneName;
			else
				return this.GetType().Name;
		}