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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:30:28+00:00 2026-05-24T03:30:28+00:00

Is there a access modifier (like public, private, etc) that makes all classes in

  • 0

Is there a access modifier (like public, private, etc) that makes all classes in the same namespace (in the same folder) friends?

Example:

namespace MYPROJ.As {
public class A {
    _______ A() {....}
}
}

namespace MYPROJ.As {
public class B {
    public DoSomething() {
        new A();   //I WANT THIS TO WORK
    }
}
}

namespace MYPROJ.Cs {
public class C {
    public DoSomething() {
        new A();   //I DON'T WANT THIS TO WORK
    }
}
}

EDIT

I want only B to be able instanciate A. How cam I do that?

  • 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-24T03:30:29+00:00Added an answer on May 24, 2026 at 3:30 am

    If by “folder” you really mean “namespace” – no. None of the .NET access modifiers are related to namespaces at all.

    Basically what controls accessibility is:

    • Being within the same class (private access)
    • Being nested within another class (private access to the containing class)
    • Being in the same assembly (internal access)
    • Being in another assembly with access via InternalsVisibleTo (internal access)
    • Being a subclass of another class (protected access to the base class members, within slightly more complicated rules)
    • Anything else (public access)

    There’s also protected internal, but I can never remember which way round that works, and I almost never use it 🙂

    So if you can put class C into a different assembly to A and B (which are in the same assembly as each other), then you can make the constructor to A internal and get the result you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm implementing a JPA-like process: all classes representing a table must subclass a DBTable
I'd like my Entity Framework model to generate entities with internal access modifier, instead
In Java, are there clear rules on when to use each of access modifiers,
Is there a way to access the response headers from an HTTP result when
Is there any way to access the file object used by a CSV writer/reader
Is there any way to access the Windows Event Log from a java class.
Is there a way to access the Project object from a NAnt extension function,
Is there a way to access the DOM of the document in an iframe
Is there an API to access Subversion from C#?
Is there any way to access the <compilation /> tag in a web.config file?

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.