Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
6answers
346 views

Is it a bad programming practice to have “Public” members inside an “Internal” class?

Wouldn't it be more specific and appropriate if I only keep "protected", "internal" and "private" members (field, method, property, event) in a class which is declared as "internal"? I have seen this ...
7
votes
4answers
5k views

How do you “override” an Internal Class in C#?

There's something I want to customize in the System.Web.Script.Services.ScriptHandlerFactory and other .NET stuff inside an internal class. Unfortunately, it's an internal class. What options do I ...
1
vote
2answers
152 views

Internal class and access to external members

I always thought that internal class has access to all data in its external class but having code: template<class T> class Vector { template<class T> friend std::ostream& ...
0
votes
2answers
33 views

Workaround for using the internal class AboutHandler in RCP for which access is discouraged

I'm aware of why using internal classes is discouraged, and am generall happy to stick to not using them. However, in my RCP I want to use a command rather than an action to display the About dialog. ...
0
votes
0answers
45 views

Quartz Cross Classes and Threads

I built out a C# form with a Quartz.Net scheduler using an example found online. One of the issues I ran into was accessing a textbox across Classes. Mainly telling the GUI/thread when Quartz last ...
0
votes
1answer
81 views

constructing a class with a struct inside of it c++

So I have a class which holds a struct inside its private variables and inside this struct I have an array where the size of the array is only determined after the construction of the class. template ...
0
votes
2answers
409 views

Android: How do I create broadcast receiver as an internal class of an activity

I have the following activity class: public class Main extends TabActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); } ...