コード例 #1
0
ファイル: WSAPEnum.cs プロジェクト: GeoffRen/PsychLabVR
 // Returns meta data for the word.
 public static string GetWord(this WSAPEnum value)
 {
     return(value.GetAttribute <WSAPAttribute>().Word);
 }
コード例 #2
0
ファイル: WSAPEnum.cs プロジェクト: GeoffRen/PsychLabVR
 // Returns meta data for the sentence.
 public static string GetSentence(this WSAPEnum value)
 {
     return(value.GetAttribute <WSAPAttribute>().Sentence);
 }
コード例 #3
0
ファイル: WSAPEnum.cs プロジェクト: GeoffRen/PsychLabVR
 // Returns whether the word is positive or not.
 public static bool GetPositive(this WSAPEnum value)
 {
     return(value.GetAttribute <WSAPAttribute>().Positive);
 }