我正在使用Snarl C# API來發送通知給snarl。爲什麼我會收到錯誤CS0246:無法找到類型或名稱空間名稱?
現在我已保存上面的URL在名爲SnarlNetwork.cs
文件的內容和我的test.cs
文件的內容是:
using SnarlNetworkProtocol;
using System;
class test
{
public static void Main(String[] args)
{
SNP snarl_object = new SNP();
string hostname = "localhost";
string hostport = "9887";
string appName = "Spotify";
bool val = snarl_object.register(hostname, hostport, appName);
if (val == true)
{
string title = "hello";
string message = "world";
string timeout = "5";
bool newval = snarl_object.notify(hostname, hostport, appName, null, title, message, timeout);
if (newval == true)
{
Console.WriteLine("sucessfull");
}
}
}
}
現在,當我嘗試使用csc test.cs
我得到的編譯我test.cs中的文件以下錯誤:
C:\Users\Noob\csharp>csc test.cs
Microsoft (R) Visual C# 2008 Compiler version 3.5.30729.4926
for Microsoft (R) .NET Framework version 3.5
Copyright (C) Microsoft Corporation. All rights reserved.
test.cs(1,7): error CS0246: The type or namespace name 'SnarlNetworkProtocol' could not be found (are you missing a using directive or an assembly reference?)
那麼,我究竟做錯了什麼,因爲根據我,我不會錯過任何using directive
。
謝謝。有效。 – RanRag 2012-08-07 21:26:17
標記爲答案嗎? – 2012-08-07 21:30:31
@JamesWood:我會但是stackoverflow說'你可以在2分鐘內接受答案' – RanRag 2012-08-07 21:32:50