MailChimp.NET
MailChimp.NET copied to clipboard
ListFilter comment issue
The summary comments for ListFilter.Exact state that this defaults to true. I think it should say it defaults to false. Maybe I've misunderstood how it's supposed to work though.
/// <summary>
/// optional - flag for whether to filter on exact values when filtering,
/// or search within content for filter values - defaults to true
/// </summary>
I.e., if I have the following three lines,
string listName = "Test";
ListFilter filter = new ListFilter();
filter.ListName = listName;
The immediate window returns false for filter.Exact.
@danesparza It seems to me that the property should be changed from bool Exact to bool? Exact. I'd be happy to do that today.
@DDtMM Agreed. It appears to be an optional member, so that would be more appropriate. To contribute, please fork the repo, make the change and then submit a pull request.