show/hide this revision's text 4 added 32 characters in body

How about having a Dictionary<MessageType, ProcessMessageDelegate> to store those methods by their message types? During initialization of the class, register all the methods in this dictionary. Then call the appropriate method. Following is the pseudo code:

  delegate void ProcessMessageDelegate(Message message)

  public class MyMessageProcessor
  {
    Dictionary<int, ProcessMessageDelegate> methods;

    public void Register( int messageType, 
                          ProcessMessageDelegate processMessage)
    {
      methods[messageType] = processMessage;
    }

    public void ProcessMessage(int messageType, Message message)
    {
      if(methods.ContainsKey(messageTypeif(methods.ContainsKey(messageType))
      {
        methods[messageType](message);
      }
    }
  }

To register methods:

   myProcessor.Register(0, ProcessMessageOfType0);
   myProcessor.Register(1, ProcessMessageOfType1);
   myProcessor.Register(2, ProcessMessageOfType2);
   ...

Edit: I just realized Jon already suggests having a map which now makes my answer redundant. But I don't understand why a statically constructed map is uglier than switch case?

show/hide this revision's text 3 added 166 characters in body

How about having a Dictionary<MessageType, ProcessMessageDelegate> to store those methods by their message types? During initialization of the class, register all the methods in this dictionary. Then call the appropriate method. Following is the pseudo code:

  delegate void ProcessMessageDelegate(Message message)

  public class MyMessageProcessor
  {
    Dictionary<int, ProcessMessageDelegate> methods;

    public void Register( int messageType, 
                          ProcessMessageDelegate processMessage)
    {
      methods[messageType] = processMessage;
    }

    public void ProcessMessage(int messageType, Message message)
    {
      if(methods.ContainsKey(messageType)
      {
        methods[messageType](message);
      }
    }
  }

To register methods:

   myProcessor.Register(0, ProcessMessageOfType0);
   myProcessor.Register(1, ProcessMessageOfType1);
   myProcessor.Register(2, ProcessMessageOfType2);
   ...

Edit: I just realized Jon already suggests having a map. But I don't understand why a statically constructed map is uglier than switch case?

show/hide this revision's text 2 added 315 characters in body

How about having a Dictionary<MessageType, ProcessMessageDelegate> to store those methods by their message types? During initialization of the class, register all the methods in this dictionary(no particular order is nessary here). Then call the appropriate method. Following is the pseudo code:

  delegate void ProcessMessageDelegate(Message message)

  public class MyMessageProcessor
  {
    Dictionary<int, ProcessMessageDelegate> methods;

    public void RegisterMethodRegister( int messageType, 
                          ProcessMessageDelegate processMessage)
    {
      methods[messageType] = processMessage;
    }

    public void ProcessMessage(int messageType, Message message)
    {
      if(methods.ContainsKey(messageType)
      {
        methods[messageType](message);
      }
    }
  }

To register methods:

   myProcessor.Register(0, ProcessMessageOfType0);
   myProcessor.Register(1, ProcessMessageOfType1);
   myProcessor.Register(2, ProcessMessageOfType2);
   ...
show/hide this revision's text 1