ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.InternalCheckedListBox.InnerArrayGetEntryObject C# (CSharp) Method

InnerArrayGetEntryObject() private method

private InnerArrayGetEntryObject ( int index, int stateMask ) : object
index int
stateMask int
return object
            internal object InnerArrayGetEntryObject(int index, int stateMask)
            {
                if (_miGetEntryObject == null)
                    _miGetEntryObject = InnerArray.GetType().GetMethod("GetEntryObject", BindingFlags.NonPublic | BindingFlags.Instance );

                return _miGetEntryObject.Invoke(InnerArray, new object[] { index, stateMask });
            }