예제 #1
0
 public static bool IsProcessorFeaturePresent(ProcessorFeatures feature)
 {
     return(DllImportCaller.lib.IntCall("coredll", "IsProcessorFeaturePresent", (int)feature) != 0);
 }
예제 #2
0
 public static bool IsProcessorFeaturePresent(ProcessorFeatures feature)
 {
     return DllImportCaller.lib.IntCall("coredll", "IsProcessorFeaturePresent", (int)feature) != 0;
 }
예제 #3
0
 public static bool IsFeaturePresent(ProcessorFeatures feature)
 {
     return((Features & feature) == feature);
 }