dotemacs

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

imenu-comment-test.cs (192B)


      1 using System;
      2 
      3 public class MyClass
      4 {
      5     public void HasComment() // test
      6     {
      7     }
      8 
      9     public void HasNoComment()
     10     {
     11     }
     12 
     13     public void CommentedToo() /* test yes */
     14     {
     15     }
     16 }