Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. var query = ParseObject.GetQuery("GameScore")
  2. .WhereEqualTo("playerName", "Dan Stemkoski");
  3. query.FindAsync().ContinueWith(t =>{
  4. IEnumerable<ParseObject> results = t.Result;
  5. });
  6.  
  7. using System.Collections.Generic;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement