Beispiel #1
0
 /// <summary>
 /// Checks if the enable bit is enabled.
 /// </summary>
 /// <param name="mode">Enable bit</param>
 /// <returns>True if enabled, false otherwise</returns>
 public static bool IsEnabled(ILEnable mode) {
     return ilIsEnabled((uint) mode);
 }
Beispiel #2
0
 public static bool IsEnabled(ILEnable mode)
 {
     return(IL.ilIsEnabled((uint)mode));
 }
Beispiel #3
0
 /// <summary>
 /// Enables an enable bit.
 /// </summary>
 /// <param name="mode">Enable bit to enable</param>
 /// <returns>True if enabled</returns>
 public static bool Enable(ILEnable mode) {
     return ilEnable((uint) mode);
 }
Beispiel #4
0
 public static bool Enable(ILEnable mode)
 {
     return(IL.ilEnable((uint)mode));
 }