Example #1
0
 public GimmieWrapper(string key, string secret)
 {
     if(instance == null){
     mKey = key;
     mSecret = secret;
     instance = this;
     }
 }
Example #2
0
 public static void InitGimmie(string key, string secret)
 {
     if(instance==null) instance = new GimmieWrapper(key, secret);
     mOAuthManger = new OAuth.Manager(key, secret,"","");
 }