示例#1
0
 public static bool IsVS2015RuntimeInstalled()
 {
     try
     {
         // Super ghetto way of detecting if the runtime is installed is simply by calling
         // any function that will cause a C++ DLL to be loaded.
         NesApu.GetAudioExpansion(0);
         return(true);
     }
     catch
     {
         return(false);
     }
 }