1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Threading;
 
namespace Shared.JailBreak
{
    public class JailBreak
    {
        public static bool ISJailBreak() {
 
            return JLJailBreak.JLJailBreak.IsJailBreak;
        }
 
 
        public static void ExitApplication ()
        {
            Thread.CurrentThread.Abort ();
        }
 
    }
}