コード例 #1
0
 protected internal RelationType(string name, RelationType opposite, string[] partsOfSpeech)
 {
     mName          = name;
     mOpposite      = opposite;
     mPartsOfSpeech = partsOfSpeech;
 }
コード例 #2
0
ファイル: Relation.cs プロジェクト: Spongebob5/_
 protected internal Relation(WordNetEngine wordNetEngine, RelationType relationType, int targetSynsetOffset, string targetSynsetPartOfSpeech, int sourceWord, int targetWord) : this(wordNetEngine, relationType, targetSynsetOffset, targetSynsetPartOfSpeech)
 {
     miSourceWord = sourceWord;
     miTargetWord = targetWord;
 }