Guest User

Untitled

a guest
Jun 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <%=Html.TextBox("view.Address", "address", new { Class = "text_field" })%>
  2.  
  3. JsonNetResult jsonNetResult = new JsonNetResult
  4. {
  5. Formatting = Formatting.Indented,
  6. Data = new {Something= “”}
  7. }
  8.  
  9. from p in context.Data
  10. select new { p.Name, p.Age };
  11.  
  12. var list = New List<No way to specify an Ananymous type>();
  13.  
  14. public List<T> CreateList<T>(T notUsed) {
  15. return new List<T>();
  16. }
  17. var list = CreateList(new { .Class = "foo" });
Add Comment
Please, Sign In to add comment