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.

I'm making a snippet for a file header in Visual Studio 2010. I want the date to match whenever the snippet was executed. Is this possible?

share|improve this question

1 Answer

up vote 2 down vote accepted

As far as I'm aware your not able to execute any code in a snippet, such as

DateTime.Now()

And there is no other way to do it. I've looked into this as I was trying to do something similar myself.

Sorry!

The alternative is as @AJM suggests to write a macro and assign it to a keyboard shortcut

share|improve this answer
Thats what I found out too :-( You can use DateTime.Now() in a macro then assign a keyboard shortcut.. – AJM Aug 12 '10 at 16:11
Yeah that's what I did – mjmcloug Aug 12 '10 at 16:41
That is totally weak. – Scott Stafford Jun 14 '12 at 20:05

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.