473,654 Members | 3,011 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Converting Unmanaged array Struct to Managed One

18 New Member
Hi All,

The question is regarding Unmanaged and Managed code conversion in C# for structures.

I have two structures like:

public struct Detail
{
public int age;
public string address;

public Detail(int _age, string _address)
{
age = _age;
address = _address;
}
}

public struct Name
{
public Detail[] names;
}


While passing the code to StructureToPtr function:

Name some = new Name();

some.names[0].age = 23;
some.names[0].address = "123,ABC Farms";

int Size = Marshal.SizeOf( some);
IntPtr data = Marchal.AllocHG lobal(Size);
Marshal.Structu reToPtr(some, data, true);

This code is showing error as Parameters are not correct, and if i tried to pass the same code without using array, it worked perfectly.

Can anyone please suggest me what should i try to resolve the problem.
Sep 17 '08 #1
1 2801
Banfa
9,065 Recognized Expert Moderator Expert
Name some = new Name();

some.names[0].age = 23;
some.names[0].address = "123,ABC Farms";

int Size = Marshal.SizeOf( some);
IntPtr data = Marchal.AllocHG lobal(Size);
Marshal.Structu reToPtr(some, data, true);

This code is showing error as Parameters are not correct, and if i tried to pass the same code without using array, it worked perfectly.
This would be expected when you don't use an array some is an object, when you do use an array some is an array of objects, since StructureToPtr takes an object handle as its first parameter if can not cope with the array. Even if it did it would be marshalling the array object not the objects in the array.

I would guess you will need to marshal each object in the array individually.

If you have not already check the MSDN function reference for this function.
Sep 17 '08 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

5
4427
by: _BNC | last post by:
I've converted " byte" to "byte *" at times, using 'unsafe' and fixed { .... }, but the reverse does not seem to work. In this case, a C++ DLL returns a byte * and a length. What is the best way to convert these to straight C#-compatible straight " byte" arrays? PS: The C++ DLL is actually managed and I have access to the source. Perhaps there is a simpler syntax for doing the conversion there, and returning a C# compatible array...
2
2100
by: MR | last post by:
I am new to VS.C++ and am having a hard time when i have to share data between managed and unmanaged code. For example, I need to read binary data from a file and then call an non-CLR dll function passing the data that was read as a void* below is a snippet of the code that i have written in an attempt to do this. I tried __pin but that is no longer supported in VS.2005. is there a better way than reading into the array as I did? How do...
6
5893
by: Aston Martin | last post by:
Hi All, ********************** My Situation ********************** I am working on project that involves passing a structure to unmanaged code from .Net world (well using C#). Perhaps an example will prove useful. structure MyStruct { // this is a complicated struct declaration in the sense
1
4557
by: Don.Leri | last post by:
Hi, I have a logger.dll (unmanaged c++ dll compiled in vs2005). I have a C# interop to use that dll in managed code implemented in Interfaces.dll (used by other C# dlls). I also have a number of other C# dlls referencing Interfaces.dll and using logger.dll interop for logging.
6
7461
by: DaTurk | last post by:
Hi, I have several interfaces in CLI that I access via c#. My problem is, is that down in the unmanaged c++, which the CLI lies on top of, I have a lot of c_str() happening. But all of my methods in CLI return System::String^. I originally just gcnew'd System::String^ passing in the c_str(). But I can't really have as many gcnew's as I'm using for overhead and for fear of leaks. So my question is this, how can I get the char*...
1
2577
by: DaTurk | last post by:
I'm having an issue converting an unmanaged struct to a CLI managed struct. It's a value struct and this cannot be changed. public value struct UpdateItem { public: System::String ^Name;
16
8779
by: pkoniusz | last post by:
Hello everybody, Been just thinking how actually one could convert the following unmanaged code to the managed C++: struct JustAnExample { char value1; int value2; // etc ....
6
8960
by: =?Utf-8?B?QWxleGFuZGVyZmU=?= | last post by:
Hi, I have a C# program that uses an unmanaged dll that has a function similar to the signature below : void f(out MyStruct arr, out int num); // num = actual array length returned The array must be allocated (with known max length = 10) before the call to the dll function (the dll just fills it ,with no allocations). The definitions of Mystruct and :
2
1276
by: Charming12 | last post by:
Hi All, The question is regarding Unmanaged and Managed code conversion in C# for structures. I have two structures like: public struct Detail { public int age; public string address;
0
8290
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8707
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8482
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8593
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6161
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4294
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2714
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1916
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1593
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.