2
votes
12answers
1k views
Why can’t I have protected interface members?
What is the argument against declaring protected-access members on interfaces? This, for example, is invalid:
public interface IOrange
{
public OrangePeel Peel { get; }
pr …
1
vote
4answers
57 views
How can I convince Visual Studio to not omit access modifiers when generating code?
Very often when Visual Studio generates code (for example generating an event handler stub) it omits access modifiers for members. I would like it to stop doing this. Is there a se …
2
votes
12answers
2k views
What is the difference between Public, Private, Protected, and Nothing?
All my college years I have been using public, and would like to know the difference between public, private, and protected? Also what does static do as opposed to having nothing? …
3
votes
5answers
119 views
Is there a reason you can not define the access modifier on a method or in an interface?
The responsibility of the visibility of a method is relegated to the class that implements the interface.
public interface IMyInterface
{
bool GetMyInfo(string request);
}
In …
0
votes
2answers
88 views
StructureMap 2.5 and internal implementors.
Hi, is it possible to get this stuff working(some way to force Objectfactory create instances like Activator)
in the below example everything is placed in a sigle assembly
public …
2
votes
1answer
80 views
Signature Files and Acces Modifers in F#
I've recently been trying to learn the Object-Oriented aspects of F#, and have become curious about how to restrict access to types/modules in the language.
More specifically, I w …
5
votes
3answers
293 views
Difference between “strict private” and “protected” Access Modifiers in Delphi?
Hi i'm a really noob, but i learn programming and after structured programming with Pascal language, i'm beginning to learn about OOP with Delphi.
So, i don't really understand th …
4
votes
8answers
809 views
C# private, static, and readonly
Hello,
I was reviewing some code for log4net and I came across this.
private static readonly ILog logger = LogManager.GetLogger(typeof(AdminClient));
I am wondering why would y …
2
votes
2answers
186 views
C# Access Modifiers with Inheritance
I'd like to have multiple versions of an object with different access modifiers on the properties
For example I might have a user class-
public abstract class UserInfo
{
inte …
1
vote
3answers
138 views
java access modifiers
which access modifiers which when used with the method makes it available to all the class and subclasses within a package??
0
votes
3answers
269 views
JavaFX bind, and var access modifiers
var width = 400;
var height = 400;
Stage {
style: StageStyle.TRANSPARENT
onClose: function():Void {
System.exit(0);
}
scene: Scene {
content: Sc …
0
votes
4answers
155 views
What is the equivalent of Java’s default (package) access in C#?
What is the equivalent of Java's default (package) access in C#? Is there one? Is there anyway to restrict access to a particular namespace?
The Problem:
I'm trying to restrict …
4
votes
6answers
362 views
What is the equivalent of Java’s final in C#?
What is the equivalent of Java's final in C#?
EDIT: Sorry, I should have been clearer. I meant what is the equivalent when applied to a member variable - so it must be assigned o …
1
vote
4answers
271 views
Access modifier best practice in C# vs Java
Hi All,
I understand that the rule of thumb in OOD is to minimize access to all members of a given object as best as can be reasonably accomplished.
C# and Java both seem to impl …
0
votes
3answers
127 views
Change the Access Modifiers of ASP.NET controls
If I put a control in a .aspx file like this;
<asp:TextBox ID="protectedTextBox" runat="server">Some info</asp:TextBox>
I get a declared control in the page's .aspx. …
