-
Code's Tags
-
Your Codes
-
Reffers
-
Linked Codes
|
Code:
Short link for Twitter:
HTML:
HTML view:
Copy Source | Copy HTML- [StructLayout(LayoutKind.Sequential)]
- struct S_NoCharset
- {
- public int a;
- }
-
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
- struct S_ForceAnsi
- {
- public int a;
- }
-
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
- struct S_ForceAuto
- {
- public int a;
- }
-
- [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
- struct S_ForceUnicode
- {
- public int a;
- }
|