我收到錯誤"Model.Password is property but is used like type"
。錯誤「是財產,但一樣使用類型爲」
我想要做的是基本上創建類構造函數來分配Password
類NewUser
的屬性的默認值。
我很新的C#這樣很感激,如果我可以引導我在做什麼錯在這裏以及如何糾正呢?
using System.ComponentModel.DataAnnotations;
namespace Model
{
public class NewUser
{
public string Password { get; set; }
public class NewUser()
{
Password = "Admin123";
}
}
}
'在構造函數中預計不會class'關鍵字。 – leppie
@ leppie,謝謝你的回覆。我現在很清楚。 – immirza