Tibialyzer.Hunt.GetWasteTableName C# (CSharp) Method

GetWasteTableName() public method

public GetWasteTableName ( ) : string
return string
        public string GetWasteTableName()
        {
            return "WasteTable" + dbtableid.ToString();
        }

Usage Example

 public static void DeleteHuntTable(Hunt hunt)
 {
     ExecuteNonQuery(String.Format("DROP TABLE IF EXISTS \"{0}\";", hunt.GetTableName()));
     ExecuteNonQuery(String.Format("DROP TABLE IF EXISTS \"{0}\";", hunt.GetWasteTableName()));
 }
All Usage Examples Of Tibialyzer.Hunt::GetWasteTableName