Creating a new Guid inside a code snippet using c#
- by Rob
I want to make an intellisense code snippet using Ctl K + Ctl X that actually executes code when it runs... for example, I would like to do the following:
<![CDATA[string.Format("{MM/dd/yyyy}", System.DateTime.Now);]]>
But rather than giving me that string value, I want the date in the format specified.
Another example of what I want is…