method-naming

Method Naming Convention Question (most languages)

If I have a method that hides a button, I would probably call it HideButton If I have a method that shows a button, I would probably call it ShowButton But what do you guys call a ShowIfThisHideIfThat style method? Possible Choices: TestForButtonVisibility (this kind of sounds like it will return true/false but not actually do the wo...