Example #1
0
 // Returns meta data for the word.
 public static string GetWord(this WSAPEnum value)
 {
     return(value.GetAttribute <WSAPAttribute>().Word);
 }
Example #2
0
 // Returns meta data for the sentence.
 public static string GetSentence(this WSAPEnum value)
 {
     return(value.GetAttribute <WSAPAttribute>().Sentence);
 }
Example #3
0
 // Returns whether the word is positive or not.
 public static bool GetPositive(this WSAPEnum value)
 {
     return(value.GetAttribute <WSAPAttribute>().Positive);
 }