Exemplo n.º 1
0
 public static String AuctionToCSV(Auction a)
 {
     return(a.auc + "," + a.item + "," + a.owner + "," + a.ownerRealm + "," + a.bid + "," + a.buyout + "," + a.quantity + "," + a.timeLeft + "," + a.rand + "," + a.seed + "," + a.context + "," + replaceNull(a.petSpeciesId) + "," + replaceNull(a.petBreedId) + "," + replaceNull(a.petLevel) + "," + replaceNull(a.petQualityId));
 }
Exemplo n.º 2
0
 public static String AuctionToCSVWithRealm(String Realm, Auction a)
 {
     return(Realm + "," + AuctionToCSV(a));
 }