Reputation: 24433
Is there a way to leverage NLREG in C#, or from any other .NET language? Currently, we only can find it as a COM object, which gives us issues when we change platforms (32 to 64 and the like).
Upvotes: 0
Views: 81
Reputation: 13950
Unless you actually need the 64-bit memory space in your NLREG client, just set the target platform in your client project to x86 (not AnyCPU), then it'll always work regardless of 32- or 64-bit OS.
Your question wasn't clear if you were changing the target compiled platform for your client, or if you're trying to run on a 64-bit OS- I'm assuming the latter.
Upvotes: 2