mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
201 B
C#
14 lines
201 B
C#
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Flags]
|
|
public enum NSComparisonPredicateOptions : ulong
|
|
{
|
|
None = 0x0,
|
|
CaseInsensitive = 0x1,
|
|
DiacriticInsensitive = 0x2,
|
|
Normalized = 0x4
|
|
}
|
|
}
|