Skip to content

Instantly share code, notes, and snippets.

@enisn
Created April 16, 2020 20:05
Show Gist options
  • Select an option

  • Save enisn/c3e773f38bf7e5f57b5ebb99a5d68964 to your computer and use it in GitHub Desktop.

Select an option

Save enisn/c3e773f38bf7e5f57b5ebb99a5d68964 to your computer and use it in GitHub Desktop.
Challenge #1 - Solution 2 - StringFilterOption.cs
[Flags]
public enum StringFilterOption
{
Equals = 0,
StartsWith = 1 << 0,
EndsWith = 1 << 1,
Contains = 1 << 2,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment