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
k
NA
25
0
abstract class and serialization
Nov 18 2008 8:03 AM
I am making a small game to illustrate abstract class, abstract method and static variables in C#. I try to serialize properties of
Tribe Class
through
MainHouse class
that inherited from
Tribe Class
.
But problem is: I cannot serialize properties of
Tribe class
because they are declared as
static
In this case, How can I serialize properties in Tribe class?
Thanks in advance.
abstract public class Tribe
{
static public int sum_people = 5;
static public int sum_lumber = 200;
abstract public void BearChild();
}
public class MainHouse : Tribe
{
public override void BearChild()
{
if (Tribe.sum_lumber > 50)
{
Tribe.sum_lumber -= 50;
Tribe.sum_people += 1;
}
}
}
public partial class Form1 : Form
{
MainHouse mainhouse = new MainHouse();
public Form1()
{
InitializeComponent();
}
private void Save_Click(object sender, EventArgs e)
{
TextWriter tr = new StreamWriter("Tribe.xml");
XmlSerializer sr = new XmlSerializer(typeof(MainHouse));
sr.Serialize(tr, mainhouse);
tr.Close();
MessageBox.Show("serialized!");
}
}
Reply
Answers (
4
)
Generic dictionary with weakreference value
File saving