コントローラー
ViewBag.title = "タイトルです-";
ViewBag.collections = collections;
return View("/Views/test.cshtml");
ビュー ( cshtml )
@foreach(var data in (@ViewBag.collections)) {
@data.name
}
</table>
ビュー ( cshtml )
@(User.Identity.IsAuthenticated ? "auth" : "anon")