mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +08:00
12 lines
145 B
C#
12 lines
145 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSEnumerationOptions : ulong
|
||
|
{
|
||
|
SortConcurrent = 0x1,
|
||
|
Reverse = 0x2
|
||
|
}
|
||
|
}
|