Roland Weigelt

Born to Code

Browse by Tags

All Tags » Code Snippets (RSS)
Vortrag über Visual Studio Extensibility in Braunschweig
Nach Leipzig bin ich nun am nächsten Montag, 16.7.2007, in Braunschweig bei der dortigen .NET Developer Group zu Gast. Ab 19:00 halte ich einen Vortrag über Visual Studio Extensibility mit den folgenden Themen: Code Snippets Project/Item Templates und...
Vortrag über Visual Studio Extensibility in Leipzig
Am nächsten Freitag, 6.7.2007, bin ich um 19:30 bei der .NET User Group Leipzig zu Gast und halte dort einen Vortrag über Visual Studio Extensibility. Die Themen des Vortrags an diesem Abend: Code Snippets Project/Item Templates und Wizards Makros Add...
Folien für "Visual Studio anpassen und erweitern" online
Am Montag waren Jens Schaller und ich bei der .NET User Group Paderborn zu Gast , um einen Vortrag über Anpassung und Erweiterung von Visual Studio 2005 zu halten. Wir hatten ingesamt 15 Zuhörer, angesichts des tollen Wetters eine durchaus erfreuliche...
Visual Studio anpassen und erweitern - in Paderborn
Mein Kollege Jens Schaller und ich sind am 2. April 2007 bei der .NET User Group Paderborn zu Besuch, wo wir ab 18:00 einen Vortrag mit dem Titel “Visual Studio anpassen und erweitern” halten werden. Auf der Agenda stehen: Code Snippets Project und Item...
Code Snippet for Throwing an ArgumentNullException
Name: ArgumentNullException Description: Inserts code for throwing an ArgumentNullException. Shortcut: ane Result: if ( parameter == null) throw new ArgumentNullException( " parameter " ); Download: ArgumentNullException.snippet
Code Snippet for a Divider Comment
Name: Divider Description: Inserts a Divider Comment. Shortcut: div Result: //=================================================== // text //=================================================== Download: Divider.snippet Funny, this wildly unspectacular...
Visual Studio 2005 Code Snippets Write-up
My colleague Jens Schaller has a nice post on Visual Studio 2005 Code Snippets .
Code Snippet for Test Method
Name: Test Description: Test method for NUnit Shortcut: test Result: [Test] public void TestName () { } Download: Test.snippet
Code Snippet for Events
Name: Event Description: Code snippet for an event and the corresponding On... method Shortcut: event Result: public event EventHandler< EventArgs > EventRaised ; protected virtual void On EventRaised ( EventArgs e ) { EventHandler< EventArgs...
Code Snippet for Properties with Prefix Notation
As I wrote in previous blog posts, I still use prefix notation for private members, one reason being IntelliSense . If you’re like me, you may find these code snippets handy: Name: Boolean Property Description: Code snippets for a boolean property. Shortcut...
More Posts Next page »