Does anyone know of any naming convention rules/guidelines that dictate when to use a “To” prefix (myVariable.ToList()), an “As” prefix (myVariable.AsEnumerable()), or a “Get” prefix (myVariable.GetHashCode())?
Does anyone know of any naming convention rules/guidelines that dictate when to use a
Share
I assume there’s no convention, so just use what fits best to what you’re doing.
iterators