Advertisement
Guest User

wtf

a guest
Oct 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1.         public static void AddSentence (StringBuilder currentWord, List<string> sentence, List<List<string>> outputSentences, bool addToOutput)
  2.         {
  3.             //func add sentence with count
  4.             currentWord.Clear();
  5.             if (addToOutput)
  6.             {
  7.                 //func add sentence
  8.                 outputSentences.Add(sentence);
  9.                 sentence.Clear();
  10.             }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement