8 writes to Name
RazorWebSite (8)
Controllers\DirectivesController.cs (3)
12
return View(new Person {
Name
= "Person1" });
18
new Person {
Name
= "Person2" });
25
Name
= "Bob",
Controllers\PartialViewEngineController.cs (1)
40
Name
= "my name is judge",
Controllers\UrlResolutionController.cs (1)
14
Name
= "John Doe"
Controllers\ViewEngineController.cs (2)
50
new Person() {
Name
= "Hello" },
51
new Person() {
Name
= "World" }
NestedViewImportsController.cs (1)
14
Name
= "Controller-Person"
1 reference to Name
RazorWebSite (1)
Services\InjectedHelper.cs (1)
10
return "Hello " + person.
Name
;