Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to replace text in a Visual Studio Snippet literal after the enter key is pressed and the snippet exits its edit mode?

For example, given a snippet like this:

 public void $name$
 {
   $end$
 }

If I were to enter $name$ as:

 My function name

is it possible to have Visual Studio change it to:

 My_function_name

or

 MyFunctionName
share|improve this question
1  
There are only four functions available while inserting code snippet. Currently there is no option to create user defined functions. three of them - msdn.microsoft.com/en-us/library/ms242312.aspx Callbase - Returns a call to the base member, or returns a NotImplementedException if the member is abstract. – Coder Hawk Dec 1 '09 at 6:55
You should answer this in an answer so it can be voted on and accepted. – y0mbo Dec 1 '09 at 21:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.