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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T12:55:58+00:00 2026-05-24T12:55:58+00:00

I need to create a binary blob of empty data to PInvoke a native

  • 0

I need to create a binary blob of empty data to PInvoke a native C++ dll that needs a unsigned char* of nulls.

The native C++ program is expecting a structure of data, and there’s a nulled area of bytes in the middle, but in C# I can’t just make a struct with an initialized byte[] in the middle.

My struct in C++ looks like this

struct myStruct
{
    byte command;
    byte returncode;
    void* Source (a pointer to a string, rather a null term char*)
    void* Destination (same thing)
    byte filler [99]
    byte options;
}

I’ve already figured that I can take a string and convert it to an array of bytes using myStruct.Source = (void*)Marshal.StringtToGlobalAnsi(source) (correct me if I’m wrong).
But I don’t know how to fill out that empty array of bytes in the middle.

This is my C# struct so far.

[StructLayout(LayoutKind.Sequential, Pack = 1)]
unsafe struct Trans_s
{
    public byte command;
    public byte returnCode;

    public void* pSource;
    public void* pDest;
    public byte* filler;
    public byte options;
}
  • 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-24T12:55:59+00:00Added an answer on May 24, 2026 at 12:55 pm

    For the array of bytes, you need to mark the field in the C# struct as a byvalarray. The default marshaller uses LPArray if you do not.

    [MarshalAs(UnmanagedType.ByValArray, SizeConst = 99)]
    public byte[] filler;
    

    You need to allocate the memory for filler when you create an instance of the struct.

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

Sidebar

Related Questions

I have a simulation that reads large binary data files that we create (10s
I need to create a hash map which will hold 528 bit binary data.
I have about 2k of raw binary data that I need to store in
I need to create a binary bitmap from a closed 2D polygon represented as
I need to create an XML schema that looks something like this: <xs:element name=wrapperElement>
I need to create a backup of a SQL Server 2005 Database that's only
I need to create a SAS dataset from a binary file. My code is:
I have a very large binary file and I need to create separate files
I have an assignment in which I need to create a function that tells
I need to create an application for the iPhone that will connect to a

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.