Skip to content

Instantly share code, notes, and snippets.

@tarrzan33
Created February 21, 2020 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarrzan33/5d4625212c9193ee439134fbc9d05967 to your computer and use it in GitHub Desktop.
Save tarrzan33/5d4625212c9193ee439134fbc9d05967 to your computer and use it in GitHub Desktop.
_______________Option1
Foo()
{
row = EFGetRow();
if (row != null)
{
vm.UserName = row.Screen_Name;
}
}
_______________Option2
Foo()
{
row = EFGetRow();
if (row == null)
{
return;
}
vm.UserName = row.Screen_Name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment