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

  • Home
  • SEARCH
  • 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 6973943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:10:23+00:00 2026-05-27T17:10:23+00:00

Maybe I’m doing something really wrong, but somehow this code always crashes with a

  • 0

Maybe I’m doing something really wrong, but somehow this code always crashes with a NullReferenceException:

public class IncomingMessageEventData : EventArgs
{
    public IncomingMessageEventData(SpecialClasses.IncomingMessageData _msg, List<string> _toreturn)
    {
        msg = _msg;
        ToReturn = _toreturn;
    }
    public SpecialClasses.IncomingMessageData msg { get; set; }
    public List<string> ToReturn { get; set; }
}
public delegate void IncomingMessageHook(IncomingMessageEventData Args);
public event IncomingMessageHook InComingMessage;
public string NewMessage(string[] _message, System.Net.IPEndPoint RemoteIP)
{
    if (InComingMessage != null)
    {
        IncomingMessageEventData data = new IncomingMessageEventData(new SpecialClasses.IncomingMessageData(_message, RemoteIP), new List<string>());
        string ToReturn = "";
        InComingMessage(data);
        foreach (var item in data.ToReturn)
        {
if (item.Length > 0)
    ToReturn = item;
        }
        return ToReturn;
    }
    else return null;
}

There’s 2 methods hooking to the event simultaneously, can that be the cause? If so, how do I avoid it? Or is passing a ref List just not the way to get values from a hooked method?

Thanks!

Edit: updated the code. Which works now! … I think I know what I did wrong though.

See, the program this is part of uses plugins which it loads through Reflection, And there might have been the slightest possibility that I forgot to copy the updated plugin dll to the plugin directory before debugging. .. . hehe. ^^;
Sorry! But at least my code uses best practices now ;P So many thanks for that one and I’ll mark it as answer!

  • 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-05-27T17:10:24+00:00Added an answer on May 27, 2026 at 5:10 pm

    There are multiple problems here.

    Passing a List<T> as a ref parameter is not a good approach. The List<T> can already be modified without involving ref / out just by using the standard Add / Remove methods already available on the type.

    You are using a nonstandard form for event handlers. It is more conventional to stick to EventHandler<TEventArgs> where TEventArgs is some class deriving from EventArgs. Data to be passed back and forth from the event handler should be handled by using properties or methods on your custom EventArgs class.

    Your event handler logic is not thread-safe. You need to capture a local copy of the event handler to account for the case when someone unsubscribes right after you do the null check. Here is the typical pattern:

    // Capture the handler in a local
    EventHandler<MyEventArgs> handler = this.MyEvent;
    if (handler != null)
    {
        // Invoke using the local copy
        handler(this, new MyEventArgs(/* ... */));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Maybe this is sort of a naive question...but I think that we should always
Maybe this is something obvious, but here is what I have. I need to
Maybe this is gonna sound naive and all, but is there something even remotely
Maybe this is a really dumb question, but please hear me out. I have
Maybe there is something screwy with Coldfusion's Ajax functions, but I cant figure this
Maybe the need to do this is a 'design smell' but thinking about another
Maybe this is a dumb question, but is there any way to convert a
Maybe I'm just thinking about this too hard, but I'm having a problem figuring
Maybe this applied to other Delphi's (I've only used 7). We've got our code
Maybe this is a dumb question, but I have the following behavior in Visual

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.