Example #1
0
 public void CreateContentMap()
 {
     contentMap = new ContentMap(); askContentMap = new ContentMap();
     contentMap.Add("N/A", (int)ReplyContent.NA);
     contentMap.Add("None", (int)ReplyContent.None); askContentMap.Add("None", (int)ReplyContent.None);
     contentMap.Add("Self", (int)ReplyContent.Self);
     contentMap.Add("Bot", (int)ReplyContent.Bot); askContentMap.Add("Bot", (int)ReplyContent.Bot);
     contentMap.Add("Other", (int)ReplyContent.Other);
     contentMap.Add("Greeting", (int)ReplyContent.Greeting);
     contentMap.Add("Name", (int)ReplyContent.Name); askContentMap.Add("Name", (int)ReplyContent.Name);
     contentMap.Add("Mood", (int)ReplyContent.Mood); askContentMap.Add("Mood", (int)ReplyContent.Mood);
     contentMap.Add("Person", (int)ReplyContent.Person);
     contentMap.Add("Place", (int)ReplyContent.Place); askContentMap.Add("Place", (int)ReplyContent.Place);
     contentMap.Add("Object", (int)ReplyContent.Object); askContentMap.Add("Object", (int)ReplyContent.Object);
     contentCount = contentMap.Count;
     replyContent = new int[contentCount];
 }