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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:42:55+00:00 2026-06-15T02:42:55+00:00

Possible Duplicate: Marshal C++ struct array into C# I have an C++ .dll and

  • 0

Possible Duplicate:
Marshal C++ struct array into C#

I have an C++ .dll and I must use it with C# but there are some problems. First of all this is one of them.

Here for using C++ .dll file I must rechange below C++ struct to C# struct. Help me pls.

C++ sturcture:

typedef struct USMC_Devices_st{
      DWORD NOD;             // Number of the devices ready to work

      char **Serial;        // Array of 16 byte ASCII strings
      char **Version;       // Array of 4 byte ASCII strings
} USMC_Devices;
  • 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-15T02:42:56+00:00Added an answer on June 15, 2026 at 2:42 am

    struct USMC_DEVICES_st would translate to something akin to:

    using System.Runtime.InteropServices;
    
    [StructLayout(LayoutKind.Sequential)]
        struct USMC_DEVICES_st
        {
            public UInt32 NOD;
    
            public IntPtr serial;
    
            public IntPtr Version;
        }
    

    Accessing Serial and Version could be done with code such as:

    IntPtr ser;
    
    for (var i = 0;
         (ser = Marshal.ReadIntPtr(um.serial, i)) != IntPtr.Zero;
         i += Marshal.SizeOf(ser))
    {
        var serial = Marshal.PtrToStringAnsi(ser);
    }
    

    Edit – Following your comments here is a more detailed example of accessing the struct’s members:

    static void PrintDevices(USMC_DEVICES_st um)
            {
                const int serialSize = 16;
                const int verSize = 4;
                int j = 0;
                for (var i= 0; i < um.NOD; i++, j+= IntPtr.Size)
                {
                    var ser = Marshal.ReadIntPtr(um.serial, j);
                    var ver = Marshal.ReadIntPtr(um.Version, j);
                    // ensure we check for null pointers - just in case
                    if (ver == IntPtr.Zero || ser == IntPtr.Zero) break;
    
                    Console.WriteLine("Device {0}, \tSerial number {1}",
                                        Marshal.PtrToStringAnsi(ser, serialSize),
                                        Marshal.PtrToStringAnsi(ver, verSize));
                }
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Why does ReSharper want to use 'var' for everything? I have ReSharper
Possible Duplicate: Split A4 PDF page into two A5 and back again I have
Possible Duplicate: How can I convert a list<> to a multi-dimensional array? I want
Possible Duplicate: Objective C for Windows iPhone development on Windows Is there any way
Possible Duplicate: Accessing Password Protected Network Drives in Windows in C#? I have ComputerA
Possible Duplicate: Extracting dollar amounts from existing sql data? I have a column in
Possible Duplicate: Can a Bash script tell what directory it's stored in? Is there
Possible Duplicate: how to delete a file? My application first reads the fields in
Possible Duplicate: PHP MVC - Convert JSON to Model data Is there an easy
Possible Duplicate: Why not use tables for layout in HTML? Under what conditions should

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.