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

  • SEARCH
  • Home
  • 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 8031951
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:15:18+00:00 2026-06-05T01:15:18+00:00

Gooday everyone. 1) I defined a public structure inside a class file (Films.cs) ,

  • 0

Gooday everyone.
1) I defined a public structure inside a class file (Films.cs) , like this:

public struct CategoryDetails
        {
            ...
        }

The class is NOT put into a namespace, for all that matters.

2) I have an aspx file called Catalog, with a code-behind file.
In the code-behind file, I have this (at the same level as the Page_Load method):

private void PopulateControls()
        {
            --> here I would like to have visibility to the CategoryDetails structure, which I don't
        }

I specify that the Catalog.ascx.cs (code-behind) file has a namespace.

  • A. What I tried so far was to place the Films class inside the same
    namespace. No luck.
  • B. As you can see, the structure is public. Thank you for your help.
    Much appreciated.
  • 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-06-05T01:15:19+00:00Added an answer on June 5, 2026 at 1:15 am

    Try Films.CategoryDetails instead. Nested classes/structs need to have their wrapping class prefixed (like a namespace) when accessed. (unless you’re accessing it from within that wrapping class)

    private void PopulateControls()
    {
        var categorydetails = new Films.CategoryDetails();
        //do stuff
    }
    

    EDIT:
    Just to clarify, from within the Films class, you no longer need to prefix it. (you still may prefix it if there are ambiguous naming issues):

    namespace MyProject
    {
        public class Films
        {
            public struct CategoryDetails
            {
            }
    
    
            public void DoStuff()
            {
                //both are valid
                var categorydetails = new CategoryDetails();
                var otherdetails = new Films.CategoryDetails();
            }
    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have four divs in my html page something like this: the working fiddle
Goodday everybody, So I made a class Temperature, which has a constructor to make
I have a problem with Threads in Java. I would like to write a
I am doing this to check and already use the variable of type number
gooday programers. I have to design a C++ program that reads a sequence of
Goodday, I have a little problem finishing off a project. I am not very
Goodday everyone, I installed magento with the sample data I refreshed the page and
I've thought of a few ways of doing this but I want to get
Is there a way to see, where are opened folds in current File? I
I would like to replace the innerhtml of thisOne with that of either clone1

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.