There is a method that checks if a name already exists :
bool Foo(string name) {
return Names.Contains(name)
}
What would be the best name for this method?
|
There is a method that checks if a name already exists :
What would be the best name for this method? |
|||||
|
Questions on Code Review Stack Exchange are expected to relate to code review request within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
It depends on what Possibilities include
|
|||
|
|