Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C++ you can use __declspec( align( # ) ) declarator to control the alignment of user-defined data. How can do this for C#. I have two procedures written on Assembler in my dll. Arguments for procedures (two arrays) should be aligned on 16 bytes. For C++ it works fine.

I just used declarations

__declspec( align( 16 ) )
double a[2]={10.2,10.6};
share|improve this question
2  
maybe you should tell us what you want to do rather than (or in addition to) how you would do it in another language. – Servy Apr 24 '12 at 20:33
4  
@Servy: Quite frankly I thought he was pretty clear as to what he wants to do; providing an example in a different language is normal. – Chris Lively Apr 24 '12 at 20:34
@ChrisLively It's not wrong, I just don't consider it sufficient. You limit responses to people who are familiar with the functionality of the other language. A direct port also isn't always idea between languages. If the underlying problem is know a solution more appropriate to the language may be used. – Servy Apr 24 '12 at 20:52

1 Answer

If you are looking for managed to non-managed interop, you would use the StructLayout attribute:

[StructLayout(LayoutKind.Explicit, Pack = 16)]
public class MyDataClass {
    [FieldOffset(0)]
    double[] a;
}

According to MSDN:

The System.Runtime.InteropServices.StructLayoutAttribute.Pack field determines the memory alignment of data fields of a target object.

http://support.microsoft.com/kb/922785

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.