gpt4 book ai didi

c# - 代码在 Windows 服务项目中不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 19:29:27 25 4
gpt4 key购买 nike

大家好,我目前正在开始我的第一个 Windows 服务,我遇到了一个奇怪的错误。出于某种原因,编译器告诉我一大堆典型的类(例如图像、位图、图形等)不存在。例如,这些在正常项目中完美运行的简单代码行返回了一堆错误:

Bitmap b = new Bitmap(destWidth, destHeight); //Error 13    The type or namespace name 'Bitmap' could not be found (are you missing a using directive or an assembly reference?)
Graphics g = Graphics.FromImage((Image)b); //Error 17 The type or namespace name 'Image' could not be found (are you missing a using directive or an assembly reference?)
g.InterpolationMode = InterpolationMode.HighQualityBicubic; //Error 18 The name 'InterpolationMode' does not exist in the current context

有什么想法吗? (我觉得这是一个简单的答案,但我的服务中绝对需要这些类(class))

最佳答案

确保您已将 System.Drawing 程序集引用到您的项目中。 Graphics类在此程序集中定义。

关于c# - 代码在 Windows 服务项目中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6014600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com