-2
可能重複:
Identifying the CPU architecture type using C#如何檢查處理器architcture運行時類型
我的程序使用不同勢組件用於其最終part.The問題是,AMD和intelx64組件是不完全兼容。它是爲編譯器即時編寫的。
可能重複:
Identifying the CPU architecture type using C#如何檢查處理器architcture運行時類型
我的程序使用不同勢組件用於其最終part.The問題是,AMD和intelx64組件是不完全兼容。它是爲編譯器即時編寫的。
你可以使用異常處理,使用try和catch。
try
{
// intel assembly
}
catch
{
// amd assembly
}
.....滑稽:-) – Steven
實際上可能無法很好地工作,因爲某些程序集可能會在發生錯誤之前運行。這只是一個想法 – iedoc