In this article, I will show you how to check MVC version of application. There are two methods, through which we can get the version of MVC. In the first method we use property of System.Web.MVC namespace. But, How to check, check the mentioned snap shots.
1. Expand References folder
2. Right click on System.Web.MVC namespace also select property , check the mentioned snap.
II-Method
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApplication9.Controllers
{
public class HomeController : Controller
{
// GET: Home
public string Index()
{
return typeof(Controller).Assembly.GetName().Version.ToString();
}
}
}