regex - How set Beyond Compare ignore summary comments .net -


i need beyond compare 4 compare code , not summary comments like

    /// <summary>     /// instancia estática del contenedor.     /// </summary>     public static componentcontainer instance     {         { return componentcontainer._instance; }     }      /// <summary>     /// inicializa la instancia estática del contenedor.     /// </summary>     public static void initialize()     {         if (!isinitialized)             _instance = new componentcontainer();     } 

and other code:

    /// <summary>     /// instancia estática del contenedor xx     /// </summary>     public static componentcontainer instance     {         { return componentcontainer._instance; }     }      /// <summary>     /// inicializa la instancia estática del contenedor.     /// </summary>     public static void initialize()     {         if (!isinitialized)             _instance = new componentcontainer();yyyy     } 

the idea beyond compare show diference in line yyyy , not line xx.

i found it. in rules, importance tab, in top says "unimportance", click plus icon, check on regular expression , write:

.*///.* 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -