Duplicate of http://stackoverflow.com/questions/126781/c-union-in-c
Is there a C# equivalent to the C union typedef? What is the equivalent of the following in C#?
typedef union byte_array
{
struct{byte byte1; byte byte2; byte byte3; byte byte4;};
struct{int int1; int int2;};
};byte_array