예제 #1
0
        public async void AddQuoteString(long postId)
        {
            if (_replyManager == null)
            {
                LoginUser();
            }
            var quoteString = await _replyManager.GetQuoteStringAsync(postId);

            ReplyBox.Text += Environment.NewLine + quoteString + Environment.NewLine;
        }