0
我與我的模型Contructor
有問題。模型構造函數返回數組
namespace arkiv.Models
{
public class BlogPost
{
public string string1 { get; set; }
public BlogPost()
{
string[] myArray= new string[2]
{ string1
,string22
};
return myArray;
}
ERRORMESSAGE:Since BlogPost.BlogPost() returns void, a return keyword must not be followed by an object expression.
爲什麼不能模型構建回到我的數組?
你好..你不能在構造函數中返回一個數組。構造函數的返回類型是void。 – Wheels73