dotemacs

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

imenu-delegate-test.cs (523B)


      1 using System;
      2 
      3 public delegate void PromptCallback( Mobile from, string text );
      4 public delegate void PromptStateCallback( Mobile from, string text, object state );
      5 public delegate void PromptStateCallback<T>( Mobile from, string text, T state );
      6 
      7 namespace Foobar
      8 {
      9     public delegate void TargetCallback( Mobile from, object targeted );
     10     public delegate void TargetStateCallback( Mobile from, object targeted, object state );
     11     public delegate void TargetStateCallback<T>( Mobile from, object targeted, T state );
     12 }