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

There are a few questions on here that are similar, but they didn't work
I would like to access a piece of file information from an embedded resource
I am trying to test a rather horrible method that passes its input parameter
I have tow tables concept_access and concept_access_log. I want to create a trigger that
EDIT: After I modified the web.config and I don't get error that's good.... then
I already have succesfully used MVVM principles in former projects, but i'm stuck with
This is my first post, I'm new to this site, but I've been lurking
Let's say you're creating a game for Mac OS X. In fact, let's say
As a .Net hobbyist & newbie, learning c#, WPF, EntityFramework, LLBLgen WCF, I face
I'm using dbcp connection pooling in tomcat (version 7) and I have a connection

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.