Skip to content

Instantly share code, notes, and snippets.

@armsteadj1
Created December 17, 2010 16:17
Show Gist options
  • Save armsteadj1/745195 to your computer and use it in GitHub Desktop.
Save armsteadj1/745195 to your computer and use it in GitHub Desktop.
if (showAliasName && user.Job.Title != null && user.Job.Title.Trim().Length > 0) {
binding.Name = ? (user.AliasName != null
? user.AliasName + " " + user.Job.Title
: user.Name + " " + user.Job.Title)
} else {
binding.Name = "N/A";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment