Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8614591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:09:24+00:00 2026-06-12T05:09:24+00:00

Hi i have been exhausted too many if comparization. and switch case methods. i

  • 0

Hi i have been exhausted too many if comparization. and switch case methods. i have been read below issue:

Best table / enum driven method calling system

this usage is good. Look Vivek’s responses.

My usage Below but i can not this.


namespace DelegateKavrami
{
    class Program
    {
        static void Main(string[] args)
        {

            new MyTest().Run();
            Console.Read();
        }

    }


    public class MyTest
    {
        public void Run()
        {
            MyMessageProcessor myProcessor = new MyMessageProcessor();
            myProcessor.Register(0, Sms);
            myProcessor.Register(1, Mms);
            myProcessor.ProcessMessage(1, Message.Sms);

        }
        public void Sms(Message message)
        {
            Console.WriteLine("Sms olarak gönderilen mesaj");
        }
        void Mms(Message message)
        {
            Console.WriteLine("Mms olarak gönderilen mesaj:");
        }

    }

    public class MyMessageProcessor
    {
        public delegate void ProcessMessageDelegate(Message message);

        Dictionary 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);
            }
        }
    }

    public enum Message
    {
        Sms,Mms
    }

}

But my Dream

myProcessor.ProcessMessage(1)

How can i use this? Error after above code runnig:
Object reference not set to an instance of an object. ON methods[messageType] = processMessage;

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T05:09:25+00:00Added an answer on June 12, 2026 at 5:09 am

    Refactor your code a little bit, rather than using delegate, template pattern should be better:

    public enum messageType
    {
        Sms, Mms
    }
    
    public class Message
    {
        public MessageType MessageType { get; get; }
        public string Data { get; set; } // assume data to be processed
    }
    
    
    interface IHandler
    {
        void Process(Message message);
    }
    
    class SmsHander : IHandler
    {
        void Process(Message message)
        {}
    }
    
    class MmsHander : IHandler
    {
        void Process(Message message)
        {}
    }
    
    class MessageProcessor
    {
        private Dictionary<MessageType, IHandler> 
                       handlers = new Dictionary<MessageType, IHandler>()
        {
            { MessageType.Sms, new SmsHander() },
            { MessageType.Mms, new MmsHander() },
        };
    
        public void Process(Message message)
        {
            handlers[message.MessageType].Process(message);
        }
    }
    

    So, you can call:

    var processor = new Processor();
    processor.Process(message);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this has been asked before. But I have exhausted the options given
I understand there are many threads like mine but I have been trying to
Iv been struggling with this for a while now an I have exhausted all
I've been trying to fix this problem for a while and have exhausted all
Have been hacking together a couple of libraries, and had an issue where a
Have been trying to encrypt an xml file to a string so that I
Have been working on this question for a couple hours and have come close
Have been looking on some tutorials for drawing canvas using SurfaceView, but the only
Have been reading about async and tasks and been attempting to convert the CopyFileEx
Have been searching how to convert a dictionary to a string. But the results

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.