Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @{
  2. ViewBag.Username = "Charlie Brown";
  3. string title1 = string.Format("Welcome {0}", ViewBag.Username);
  4. var title2 = string.Format("Welcome {0}", ViewBag.Username);
  5. }
  6.  
  7. @Html.ActionLink(title1, "Index")
  8. @Html.ActionLink(title2, "Index")
  9.  
  10. dynamic x = "";
  11. int i = string.Format("{0}", x);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement