mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-24 18:04:39 +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
|
||
|
}
|
||
|
}
|