Beispiel #1
0
 void TestGetUserInfo()
 {
     redditApi.GetUserInfo(
         s => {
         Debug.Log(s);
         user = UserMe.FromJson(s);
     }
         );
 }
Beispiel #2
0
 public static string ToJson(this UserMe self) => JsonConvert.SerializeObject(self, Reddit.Converter.Settings);