Was just watching a video of a rather great Microsoft instructor, Mike Taulty. In his videos he consistently surrounded his return values with parentheses, even single values:
return (null);
Is there some hidden benefit with IntelliSense, or maybe something with the compiler, that this provides?
Code below:
public ObservableCollection<MailViewModel> Emails
{
get
{
return (emails);
}
set
{
emails = value;
}
}