SNCT.Phrase.Phrase C# (CSharp) 메소드

Phrase() 공개 메소드

public Phrase ( String val, double inf ) : System
val String
inf double
리턴 System
        public Phrase(String val, double inf)
        {
            value = val;
            influx = inf;
            importance = 1.0;
            outs = new SortedDictionary<Phrase, double>();
        }