Adding .NET Framework DLL as reference to windows store app

前端 未结 2 1416
时光说笑
时光说笑 2020-12-17 08:59

I\'m working on a windows store app project where I want to read a simple temperature measurement data from a National Instruments DAQ. However the DLL library for the DAQ i

2条回答
  •  孤街浪徒
    2020-12-17 09:42

    The "workaround" is to create a version of the library you want as a portable library. That's all there is to it. You simply don't have the full framework available.

    The difficulty involved in converting a class library to a portable class library depends heavily on what the library does, and which areas of the BCL it uses.

提交回复
热议问题