System.Runtime.CompilerServices.ReadOnlyCollectionBuilder.IList C# (CSharp) Method

IList() private method

private IList ( object? value ) : bool
value object?
return bool
        bool IList.Contains(object? value)
        {
            if (IsCompatibleObject(value))
            {
                return Contains((T)value!);
            }
            else return false;
        }

Same methods

ReadOnlyCollectionBuilder::IList ( object? value ) : int
ReadOnlyCollectionBuilder::IList ( int index, object? value ) : void
ReadOnlyCollectionBuilder::IList ( object? value ) : void