5
私はC#の初心者で、チュートリアルからサンプルのC#プログラムを実行しようとしています。ポイントがネームスペースSystem.Drawingに存在しません
私は以下のコードを実行しようとすると、私は次のエラーを取得:.NET]タブで[参照の追加]をクリックしをクリックしてSystem.Drawing
までスクロール参考に、あなたのソリューションエクスプローラの右クリックで
Error 1 The type or namespace name 'Point' does not exist in the namespace 'System.Drawing' (are you missing an assembly reference?) C:\Users\Documents\Visual Studio 2012\Projects\HelloWorld\HelloWorld\Class1.cs 20 28 HelloWorld
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Nullable<bool> b = false;
if (b.HasValue) Console.WriteLine("b is {0}", b.Value);
else Console.WriteLine("b is not set");
System.Drawing.Point p = new System.Drawing.Point(20, 30);
Console.WriteLine(b);
Console.WriteLine("Hello World");
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
}
プロジェクトには 'System.Drawing.dll'への参照がありますか?これは、基本的には*エラーメッセージの内容です。 –
System.Drawing.dllへの参照を追加するにはどうすればよいですか?私はdllをダウンロードする必要がありますか、または私はどのように私のマシンでそれを見つけ、コンパイラを指すのですか? – user1050619
VSでは、ソリューションエクスプローラを表示 - >参照 - >参照の追加 - > NET-> whatever –