Example #1
0
 public bool Is(PartOfSpeech pos)
 {
     return((this.PartOfSpeechId & pos.PartOfSpeechId) != 0);
 }
Example #2
0
 public bool Equals(PartOfSpeech obj)
 {
     return(this.PartOfSpeechId == obj.PartOfSpeechId);
 }
Example #3
0
 public PartOfSpeech(PartOfSpeech partOfSpeech)
 {
     PartOfSpeechId = partOfSpeech.PartOfSpeechId;
 }