My VA Snippet
Visual Assist X is a relatively good code Nong Code open-hanging tool, with your coding speed can be more powerful, code bugs will be greatly reduced, really achieve fast coding, reduce duplication of work. It has to be said that this is a productivity tool that is used by almost 90% vs platform developers. Of course, the VS itself can also expand a lot of good plug-ins, such as Vimer, PowerShell, and so on, and then listed for your reference.
The following is my personal frequently used some of the snippet, is to make a backup, follow-up will continue to add.
Look at the edit screen of VA:
You can edit your favorite snippet after you enter.
============== Main program core Framework ===============
1 /************************************************************2 * * algorithm: $end $3 * * Author: Qingke Zhang4 * * Copyright: Shandong University5 * * Time: $YEAR $-$MONTH $-$DAY $6 * * Versions: Version $end $7 ************************************************************/8 9#include <stdio.h>Ten#include <stdlib.h> One#include <math.h> A - - /*Global Variables*/ the - - intMain () - { + - +System"Pause"); A return 0; at -}
============== header File Xxx.h core Framework ===============
1 /************************************************************2 * Name: $FILE _base$. $FILE _ext$3 * Time: $YEAR $-$MONTH $-$DAY $4 * Note: $end $5 ************************************************************/6 #ifndef _$file_base_upper$_h_7 #define_$file_base_upper$_h_8 9 $selected $Ten One A - - the - #endif //_$file_base_upper$_h__
============== source file xxx.c Core Framework ===============
1 /* 2 * Name: $FILE _base$.c 3 * Time: $YEAR $ -$MONTH $-$DAY $ 4 * Note: $end $ Span style= "color: #008080;" >5 ************************************************* */ 6 7 #include " $FILE _base$.h " 8
=============== Program Segment Annotation Framework ====================
1 // ********************************************************/ 2 // $selected $ 3//*************************************************** *****/
================= Split Line =======================
1 // .--------------------------------------------------------
My VA Snippet