Definition at line 38 of file BigInteger.cs.
39 {
40 get
41 {
43 {
45 {
47 }
48 return false;
49 }
51 {
52 return false;
53 }
54 int num = _bits.Length - 1;
56 {
57 return false;
58 }
59 while (--num >= 0)
60 {
62 {
63 return false;
64 }
65 }
66 return true;
67 }
68 }