System.Perf.Dictionary.ContainsDictionaryTester.CollectionCount C# (CSharp) 메소드

CollectionCount() 개인적인 메소드

private CollectionCount ( int testIndex ) : int
testIndex int
리턴 int
        internal int CollectionCount(int testIndex)
        {
            int n = 0;

            if (testIndex < 0)
                n = 10;
            else
                n = (int)Math.Pow(2, testIndex);

            return n;
        }