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 6894009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:43:46+00:00 2026-05-27T06:43:46+00:00

I don’t know if this is a bad idea or not. I’m using an

  • 0

I don’t know if this is a bad idea or not. I’m using an unmanaged DLL (written by me) in C#.

There are some callback functions that can be set up in the DLL, but these can only mapped to static class members on the C# side.

Since I want to make a callback operate on a particular class instance I’m wondering if it would be safe to store a class instance pointer inside the DLL’s state information.

From the DLL’s perspective this will simply be a 32-bit context integer, but from the C# side this will be an actual class “pointer” or “reference”, with the callback signature defined something like so:

public delegate void StatusChangeHandler(ContextClass context, int someCallbackValue);

It does compile and it does appear to work, I just don’t know if this is guaranteed. Is this an acceptable practice?

  • 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-27T06:43:46+00:00Added an answer on May 27, 2026 at 6:43 am

    One problem that I see here, is that .Net have a garbage collector, which can move your class around. So your saved pointer may be invalidated. In order to prevent this for simple types you should pin the object like this:

    byte[] b = new byte[1000];
    // pin b, and get pointer to the first element.
    fixed (byte* ptr = &b)
    {
       //use your fixed pointer to b. b will not be moved untill code leaves fixed region.
    }
    

    Though, for complex types, .Net may be smartenough to pin objects automatically, I would not rely on that.
    So you have write something like this:

    var ctx = new Context();
    fixed (IntPtr ptr = &ctx)
    {
        StatusChange(ptr);
        // do other stuff, and don't leave fixed region, until you can clear the pointer in the native library.
    }
    

    But really, I think a much simpler and reliably way will be to create a static dictionary for your context objects, and give your native dll only a key for that dictionary, which could be a number, string or GUID. E.g. anything that is a value, not a pointer.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I don't know why this double json response are not successful: [{first_content:content,...}][{second_content:content,...}] So i
don't know if this is possible.. I'm using sqlite3 schema: CREATE TABLE docs (id
Don't want to sort the entries. using this does not preserve the order as
Don't know if there is a better way to do this, so that is
I don't know: if this works. if it's a good idea. what it is
I don't know if this question is trivial or not. But after a couple
Don't dismiss this as a newbie question! It's not, I'm not, I've tried everything,
Don't know how to google for such, but is there a way to query
(Don't know if this is strictly on-topic, but I don't see any better Stack
Don't know if this has been asked before, so point me to another question

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.