これは非常に単純なクラスです (Test.cs)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcApplication5.Models
{
public class Test
{
public string add(string s)
{
return s + "blaaaaa";
}
}
}
およびビュー (Index.cshtml)
@model MvcApplication5.Models.Test
@{
ViewBag.Title = "Homepage";
}
@Model.add("test")
System.NullReferenceException: オブジェクト参照がオブジェクトのインスタンスに設定されていませんが、理由がわかりません。
ありがとう、ロクサー:)