Tagged Questions

2
votes
2answers
60 views

Handling Specified Member Classes In C#

In building a class structure, I would like to have derived classes potentially posses derived member classes. For example: class GamePiece { } class Checker : GamePiece {} class ChessMan : ...
1
vote
2answers
130 views

Is there any difference regarding performance of private, protected, public and internal methods in C# classes?

Is there any difference regarding performance of private, protected, public and internal methods in C# class? I'm interested if one consumes more processor time or RAM.
1
vote
4answers
107 views

Access identically named class members of instances of different classes

I have instances of class A and B, and both classes implement a member 'Text'. Is there a way to access member Text in a generic way? I'm hoping for something analogous to the javascript way of simply ...
0
votes
5answers
290 views

C# accessing form member from separate class

I need some advice please on the best way to achieve a particular outcome... My scenario... I have a Form1 class, which is my main Form with a picture box on it. I have a second class called camera ...
0
votes
3answers
729 views

C# hiding with members

in the below example, what would happen? class Base { public int abc = 3; } Class Derived : Base { public int abc = 2; } static void Main() { Derived blah = new Derived(); ...
0
votes
3answers
246 views

labeling a group of members as private/public in c#

in a c++ class declaration, you can label a group of members as private or public, e.g. private: int x; double y; seems like there's no way to do this in c#. am I wrong?