dotemacs

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

imenu-generics-test.cs (456B)


      1 using System;
      2 
      3 class ImenuMatcherTests
      4 {
      5     private void OneGeneric<T>(this IAppBuilder builder, params object[] args)
      6     {
      7         Console.WriteLine("TODO: something");
      8     }
      9 
     10     private void TwoGeneric<T1,T2>(this IAppBuilder builder, params object[] args)
     11     {
     12         Console.WriteLine("TODO: something");
     13     }
     14 
     15     private void NoGeneric(this IAppBuilder builder, params object[] args)
     16     {
     17         Console.WriteLine("TODO: something");
     18     }
     19 }