using System;
public enum Test
{
Test0,
Test1
}
@model Test
@{
Layout = null;
<div class="container">
<h1>Hello Stranger</h1>
<h2>Enum Value: @Model</h2>
<div>
using System.Web.Mvc;
using System.Collections.Generic;
namespace HelloWorldMvcApp
public class HomeController : Controller
[HttpGet]
public ActionResult Index()
return View(Test.Test1);