Ejemplo n.º 1
0
        private int cost;                 // transWordのcost


        //-----------------------------------------------------------
        // constructor
        public WordTable()
        {
            this.prev         = null;
            this.next         = null;
            this.word         = "";
            this.transWord    = "";
            this.charCategory = CharCategory.Null;
            this.posCategory  = PosCategory.Null;
            this.sResult      = null;
            this.divided      = Divided.Non;
            this.cost         = 100; // 未知語
        }
Ejemplo n.º 2
0
        public int GetRemainder(int limit)
        {
            Divided d = new Divided();

            return(d.RemainderCheck(limit));
        }