SNCT.Phrase.Phrase C# (CSharp) Method

Phrase() public method

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