c# - XML parser: implementation design -


i've assumed xml documents convenient way store information. i've found in xml way "instruct" application. delicous.

my problem integrate xml parsing in application classes. i'm using c# system.xml interface, think it's , portable (right?).

is there standard interface defines methods organize recursion on xml tags, or methods implement common xml implementations (maybe in base class)?

initially can think write interface defines

void read(xmlreader xml);  void write(xmlreader xml); 

what nested tags, common tags , on...

p.s.: don't think implement using linq, except in case it's supported in mono (how determine this)?

thank much! :)

i think might looking serialization, beginners tutorial on serialization


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -