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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:03:16+00:00 2026-05-15T23:03:16+00:00

I have an external library that takes an IntPtr. Is there any safe way

  • 0

I have an external library that takes an IntPtr. Is there any safe way to do this…

int BytesWritten = 0;
Output.WriteBytes(buffer, new IntPtr(&BytesWritten));

…without having to use ‘unsafe’ code? I’m not that familiar with IntPtrs, but I’d like to do something like this:

fixed int BytesWritten = 0;
Output.WriteBytes(buffer, IntPtr.GetSafeIntPtr(ref BytesWritten));

…in such a way that I don’t need to compile with /unsafe.

I can’t change the WriteBytes function, it’s an external function.

It seems like there should be some sort of cast between ‘ref int’ and IntPtr, but I have not had luck finding it.

  • 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-15T23:03:16+00:00Added an answer on May 15, 2026 at 11:03 pm

    Yes, there is. You can use P/Invoke for your code. It will create the pointer for you automagically. Something like this:

    [DllImport("yourlib", SetLastError=true)]
    static extern bool WriteBytes(
        [MarshalAs(UnmanagedType.LPArray)]
        byte [] buffer,
        ref int BytesWritten);
    

    (I added the array as a bonus). More info on P/Invoke can be found, with gazillion examples, at pinvoke.net.

    Each parameter above can take out, in and ref. Out and ref parameters are translated as pointers, where an ref-parameter is two-way.

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

Sidebar

Related Questions

I have a library that does I/O. There are a couple of external knobs
I have a external library that requires a XmlNode[] instead of XmlNodeList. Is there
I have a compiled external library that I'm using in my (Objective-C++) code. This
I have an external library that needs to be dynamically linked with a test
I have a BSD socket created with following code (it's in external library that
I have a function in an external library that I cannot change with the
I have a class from an external library that I want to extend with
I have a problem; I'm using an external library where one particular event has
In my program, I have a string (obtained from an external library) which doesn't
I have external html5 canvas that you can paint on some lines using your

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.