-2

Possible Duplicate:
Identifying the CPU architecture type using C#

my program is using diffrent assemblies for its final part.The problem is that amd and intelx64 assemblies are not fully compatible. Its is for an compiler im working on.

0

1 Answer 1

0

you could use exception handling, using try and catch.

try
{
    // intel assembly
}
catch
{
    // amd assembly
}
Sign up to request clarification or add additional context in comments.

1 Comment

that actually might not work very well since some of the assembly might run before an error occurs. it was just an idea

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.