Tagged Questions
7
votes
4answers
510 views
Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Consider the following code (a console app which must be compiled with "unsafe" enabled):
using System;
using ...
3
votes
3answers
535 views
structs using FieldOffset unexpected behaviour
I am trying to understand explicit struct layout and struct overlaying and i am not seeing behaviour i expect. Given the code below:
class Program
{
static void Main(string[] args)
{
...
3
votes
2answers
145 views
Should changing the contents of a string like this cause an exception?
Consider the following code:
using System;
using System.Runtime.InteropServices;
namespace Demo
{
class Program
{
static void Main(string[] args)
{
const string ...
3
votes
7answers
2k views
Is there an alternative for StructLayout “Pack” attribute in Compact Framework?
I would like to do the following:
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct SomeStruct
{
public byte SomeByte;
public int SomeInt;
public short SomeShort;
...
2
votes
2answers
1k views
How to convert fixed byte/char[100] to managed char[] in C#?
What's the best way to convert a fixed byte or char[100] to a managed char[] in C#? I ended up having to use pointer arithmetic and I'm wondering if there is an easier way -- something like a memcpy ...
2
votes
2answers
4k views
C# StructLayout.Explicit Question
I'm trying to understand why the second example below works with no issues, but the first example gives me the exception below. It seems to me that both examples should give an exception based on the ...
1
vote
1answer
250 views
Problems with Marshal.PtrToStructure and String
I've the following class
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi, Pack = 1)]
public class xy11Dataset : SZLDataset
{
public short Index { get; set; }
...
1
vote
2answers
174 views
Shoud I use LayoutKind.Auto for my structs if they don't perform in COM Interop?
By default structs in C# are implemented with [StructLayout( LayoutKind.Sequential )] for reasons basically stating that these type of objects are commonly used for COM Interop and their fields must ...
1
vote
6answers
953 views
What am I doing wrong with this use of StructLayout( LayoutKind.Explicit ) when calling a PInvoke struct with union?
The following is a complete program. It works fine as long as you don't uncomment the '#define BROKEN' at the top. The break is due to a PInvoke failing to marshal a union correctly. The ...