本文介绍了[UWP]找不到类型或命名空间名称“Overlapped”。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发 需要使用重叠类的通用应用。 

I'm developing  an Universal app that needs to use Overlapped class. 

我已经从
Nuget
。 但每次我构建应用程序时,它都会失败并出现以下错误:

I've installed System.Threading.Overlapped from Nuget. But everytime I build the app, It failed with the following error:

"类型或无法找到命名空间名称'Overlapped'(您是否缺少using指令或汇编引用?)"

"The type or namespace name 'Overlapped' could not be found (are you missing a using directive or an assembly reference?)"

任何帮助?

谢谢你!

推荐答案

你知道使用陈述是什么吗?您是否在获得错误的文件中有一个System.Threading.Overlapped?

Do you know what using statements are? Do you have one for System.Threading.Overlapped in the file that is getting the error?


这篇关于[UWP]找不到类型或命名空间名称“Overlapped”。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 11:22