dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

fontification-test-compiler-directives.cs (372B)


      1 using System;
      2 
      3 public class Test
      4 {
      5     public void Test()
      6     {
      7         string x;
      8 
      9         // reference
     10         x += "strReference";
     11         #region v1 verification
     12         x += "strVerification";
     13         #endregion
     14 
     15         #region t1 test'
     16         x += "singleQuote";
     17         #endregion
     18 
     19         #region t2 - test"
     20         x += "doubleQuote";
     21         #endregion
     22     }
     23 }