Symphonary.StringAllocator.StringAllocator C# (CSharp) Method

StringAllocator() public method

public StringAllocator ( ) : System
return System
        public StringAllocator()
        {
            NumDroppedNotes = 0;
            NumOutOfRangeNotes = 0;
            for (int i = 0; i < alloc.Length; i++)
            {
                alloc[i] = new List<GuitarNote>();
            }
        }