Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7668295
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:19:39+00:00 2026-05-31T15:19:39+00:00

Quiz: what does the following program print? using System; using System.Runtime.InteropServices; namespace ConsoleApplication2 {

  • 0

Quiz: what does the following program print?

using System;
using System.Runtime.InteropServices;

namespace ConsoleApplication2 {

    [StructLayout(LayoutKind.Sequential, Pack=1)]
    struct Struct1 {
        bool b;
        int i;
    }

    [StructLayout(LayoutKind.Sequential, Pack=1)]
    struct Struct2 {
        byte b;
        int i;
    }

    class Program {
        static void Main(string[] args) {
            Console.WriteLine(Marshal.SizeOf(typeof(Struct1)));
            Console.WriteLine(Marshal.SizeOf(typeof(Struct2)));
            Console.ReadKey();            
        }
    }
}

Answer:

8
5

This is very confusing to me. Both bool and byte have a size of 1 byte, and specifying [StructLayout(LayoutKind.Sequential, Pack=1)] should nullify any padding issues. Both structs should be 5 bytes. So I have two questions:

  • Why does marshalling work this way?
  • Any workaround? I have 1-byte booleans in native structs I need to import. I can use byte instead of course but it’s “messy”.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:19:40+00:00Added an answer on May 31, 2026 at 3:19 pm

    By default, .NET type bool marshals to unmanaged type BOOL, which is typedefed to int. If you want to marshal to and from 1-byte unmanaged booleans, indicate this to the marshaler with an attribute:

    [StructLayout (LayoutKind.Sequential, Pack=1)]
    struct Struct3 {
        [MarshalAs (UnmanagedType.I1)]
        bool b;
        int i;
    }
    
    Console.WriteLine (Marshal.SizeOf (typeof (Struct3))) ; // prints 5
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The code is working!! I now have a quiz that does the following: A
I am coding a quiz module, which contains a radio button set, using jQuery
i have following quiz: Let x be an integer larger than the odd number
I am creating a quiz style app for iOS using phonegap. The app allows
I am designing a quiz engine by using django. In the models.py, I have
Why does this page http://reboltutorial.com/cgi-bin/designpatterns-quiz.cgi shows a ? in the sentence (at least on
I'm writing a quiz program. I have a 1-Dimensional array of correct answers from
All applicants to our company must pass a simple quiz using C as part
For some reason, when I execute this program with the following expression 12 12
Following is an extraction of a WinAPI test quiz. I've researched quite a bit,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.