StoryTeller.Grammars.Sets.SetVerificationResult.Tabulate C# (CSharp) 메소드

Tabulate() 공개 메소드

public Tabulate ( Counts counts ) : void
counts Counts
리턴 void
        public void Tabulate(Counts counts)
        {
            counts.Rights += _matches.Count;
            counts.Wrongs += _missing.Count;
            counts.Wrongs += _extras.Count;
            counts.Wrongs += _wrongOrders.Count;
            
        }