简报:
我的程序说:
程序定义了多个入口点。使用/ main编译以指定包含入口点的类型。
它给了我错误代码 CS0017 。
我的经历:
当我将Main
- 方法更改为MainWindow
时,错误消失了,但正如我所说,我没有经验,看看这个解决方案是对还是错。
立即
是的,我看了一下this(关于同一问题的stackoverflow帖子),但它没有多大帮助,因为它是特定于程序的(我认为这是因为它中使用了xunit包)。
下面的代码是名为Rechteck
的类的一部分(是的,我会讲德语)
我是初学者,我不太了解。虽然我遇到了很多错误,但我从未见过这样的事情。有人可以看看吗? :(
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RechteckWPF
{
class Programm
{
static void Main(string[] args)
{
// Neues Objekt erstellen
Rechteck k = new Rechteck();
try
{
}
catch (Exception e)
{
Console.WriteLine("Error: {0}", e.Message);
}
// Ausgeben
Console.WriteLine($"Umfang: {k.Umfang}\nFläche: {k.Fläche}");
Console.ReadKey();
}
}
}