Last active
May 30, 2018 21:08
-
-
Save kleberksms/ee435bd35276715011be539896b5215c to your computer and use it in GitHub Desktop.
DataBinding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p class="note @((Foo == "Bar" ? "highlight" : ""))">This is a note</p> | |
<!-- OR --> | |
<p class="note @((Foo == Bar ? "highlight" : ""))">This is a note</p> | |
@functions { | |
private string Foo { get; set; } = "Bar"; | |
private string Bar { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment