我想做一個Web服務的電子郵件,但得到錯誤必須有返回類型。我不知道如何處理這個問題,因爲我是C#中的新成員。我怎樣才能使公共子在C#
代碼:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
namespace Email_Service
{
public partial class Service1 : ServiceBase
{
public string name;
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
public Notification(){
name = "Denmark";
return name;//I'm just trying this if its work but its not working....
}
}
}
您缺少方法簽名的返回類型。 – NomadTraveler