TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Adam Turner
NA
60
0
Overrideing variables
Jul 5 2007 10:20 PM
Hello,
I'm trying to figure out how to override variables spawned in a derived class that are declared in a base class.
For instance:
public class construct
{
public
bool
DENSITY =
false
;
}
public class mob : construct
{
DENSITY = true;
}
Is this possible with some sort of modifier or something, or do I have to change DENSITY in a method/function/procedure/sub-routine (what name do C# programmers use?) in the derived class?
Reply
Answers (
2
)
Selecting default date in the calendar control doesn't seem to work
Some basic debugging help, I think...