예제 #1
0
 public void ShareFull(ShowMyAppShareOnCompleteBlock sCompleteBlock)
 {
     GetFullURL(delegate(string sURL)
     {
         ShowMyAppShare.Share(Message + "\n" + sURL, sCompleteBlock);
     }
                );
 }
예제 #2
0
        //-------------------------------------------------------------------------------------------------------------
        public static ShowMyAppShare Share(string sMessage, ShowMyAppShareOnCompleteBlock sCompleteBlock)
        {
            ShowMyAppShare rReturn = new ShowMyAppShare(sMessage, sCompleteBlock);

            return(rReturn);
        }