Skip to content

Instantly share code, notes, and snippets.

@flyingfisch
Created March 19, 2015 17:42
Show Gist options
  • Save flyingfisch/407d07c925ef37480d4c to your computer and use it in GitHub Desktop.
Save flyingfisch/407d07c925ef37480d4c to your computer and use it in GitHub Desktop.
asp-net-razor-cheatsheet.md
#ASP.net Razor Cheatsheet
## Basics
### Including code in a view
```
<!-- Single-statement blocks -->
@{ int myInt = 1; }
<!-- Inline expressions -->
<p>So there I was, with @numberOfDonuts donuts in front of me.</p>
<!-- Multi-statement blocks -->
@{
int myInt = 1;
int myOtherInt = 2 + myInt;
}
<p>myInt is equal to @myInt</p>
```
> Written with [StackEdit](https://stackedit.io/).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment