JLChen
2021-01-08 20f4a21e2a8e489b5e859a11ad76f77582f6650b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
 
using ObjCRuntime;
using Foundation;
using UIKit;
 
namespace JLJailBreak
{
    // @interface JLJailBreak : NSObject
    [BaseType(typeof(NSObject))]
    interface JLJailBreak
    {
        // +(BOOL)isJailBreak;
        [Static]
        [Export("isJailBreak")]
        //[Verify(MethodToProperty)]
        bool IsJailBreak { get; }
    }
 
}