Newer
Older
ClosedXML / ClosedXML / Excel / AutoFilters / IXLFilteredColumn.cs
@Francois Botha Francois Botha on 30 May 2017 168 bytes Unknown changes - something to do with line endings?
using System;
namespace ClosedXML.Excel
{
    public interface IXLFilteredColumn
    {
        IXLFilteredColumn AddFilter<T>(T value) where T : IComparable<T>;
    }
}