Tibialyzer.Hunt.GetWasteTableName C# (CSharp) 메소드

GetWasteTableName() 공개 메소드

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

Usage Example

예제 #1
0
 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