Whoever wrote that #regions has a performance impact to the end product had no idea what they were talking about. It's incorrect. They don't appear in the end product in any way.
Regions are a great way to group code in your development environment into whatever categories you feel are important. It essentially allows you to only focus on a subset of your class for short period of time.
I personally like regions and use them frequently. I don't feel it's a sign of bad code at all. It simply allows me to navigate my code faster and keep methods with similar purpose in similar locations (events, overrides, public, private etc ...).
EDIT
Wanted to respond a bit more to the people who think regions are evil because they hide bad code.
Just because a feature can be used for bad purposes does not mean the feature is bad. Almost every feature added to a language can be used / abused for nefarious purposes. This does not make the feature evil, just the use.
When deciding whether or not a feature should be used or not, you certainly must weigh in the abuse factor, it's consequences and mitigations. The consequence here is hiding bad code and the mitigation is code reviews.
Note the word hide. Removing the regions won't prevent people from checking in bad code (I'm beginning to believe nothing ever will). It simply prevents people who care deeply about their code organization from using a tool to organize their code. Hence you only end up hurting the people with passion.
I find the potential for abuse to be small here. I typically find that bad code is simply a result of laziness or lack of passion. These are the same people who don't care enough to use features like regions.
Lastly if code hiding is really a problem in your code base, then your code review process is the problem. Regions don't hide bad code during a code review. Banning regions won't help this any.