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 294349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:21:32+00:00 2026-05-12T06:21:32+00:00

In the .NET struct design guidelines , it gives the maximum sensible size of

  • 0

In the .NET struct design guidelines, it gives the maximum sensible size of a struct as 16 bytes. How do you determine how large your struct is, and is it affected by the architecture your program is running on? Is this value 32-bit only, or for both archs?

  • 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-12T06:21:32+00:00Added an answer on May 12, 2026 at 6:21 am

    Yes, the size of a struct is affected by the architecture. C# structs in 32bit are aligned at 4 byte boundaries, and in 64bit they are 8 byte aligned.

    Example:

    struct Foo
    {
       int bar;
    }
    

    Instances of this struct will take up 4 bytes in 32bit processes, and 8 bytes in 64bit processes, even though the “int bar” takes just 4 bytes on both 32bit and 64bit processes.

    Update:

    I did some testing with this. I wrote this code:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace ConsoleApplication3
    {
        struct Bar
        {
            int a;
        }
    
        struct Foo
        {
            Uri uri;
            int a;
        }
    
        class Program
        {
            static void Main(string[] args)
            {
                Foo[] foo;
                long fooBefore = System.GC.GetTotalMemory(true);
                foo = new Foo[10];
                long fooAfter = System.GC.GetTotalMemory(true);
    
                Bar[] bar;
                long barBefore = System.GC.GetTotalMemory(true);
                bar = new Bar[10];
                long barAfter = System.GC.GetTotalMemory(true);
    
                Foo aFoo = new Foo();
                Bar aBar = new Bar();
    
                System.Console.Out.WriteLine(String.Format("[Foo] Size of array of 10: {0}, Marshal size of one: {1}", fooAfter - fooBefore, System.Runtime.InteropServices.Marshal.SizeOf(aFoo)));
                System.Console.Out.WriteLine(String.Format("[Bar] Size of array of 10: {0}, Marshal size of one: {1}", barAfter - barBefore, System.Runtime.InteropServices.Marshal.SizeOf(aBar)));
                System.Console.ReadKey();
            }
        }
    }
    

    As a 64bit process, I get this output:

    [Foo] Size of array of 10: 208, Marshal size of one: 16
    [Bar] Size of array of 10: 88, Marshal size of one: 4
    

    As a 32bit process, I get this output:

    [Foo] Size of array of 10: 92, Marshal size of one: 8
    [Bar] Size of array of 10: 64, Marshal size of one: 4
    

    Observations:

    • The simple struct, Bar, seems to take 4 bytes on both 32bit and 64bit processes
    • The other struct, Foo, seems to take 8 bytes on 32bit (4 bytes for the int, and 4 bytes for the reference to the Uri), but 16 bytes on 64bit (4 bytes for the int, 8 bytes for the reference to the Uri, and I think 4 bytes for alignment)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 295k
  • Answers 295k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Is your Menu control at the root level in this.Master?… May 13, 2026 at 6:57 pm
  • Editorial Team
    Editorial Team added an answer The basic idea is that you don't have to write… May 13, 2026 at 6:57 pm
  • Editorial Team
    Editorial Team added an answer Performance testing your rails application might be all you need.… May 13, 2026 at 6:57 pm

Related Questions

This question was already asked in the context of C#/.Net . Now I'd like
Being primarily a C++ developer the absence of RAII (Resource Acquisition Is Initialization) in
I'm making an immutable struct in .Net which contains a read only collection of
I was poking around in XNA and saw that the Vector3 class in it

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.