Click here to Skip to main content
15,917,320 members
Home / Discussions / C#
   

C#

 
GeneralRe: creating a packet using c# or vb Pin
Member 1140244512-Nov-15 4:44
Member 1140244512-Nov-15 4:44 
GeneralRe: creating a packet using c# or vb Pin
Gerry Schmitz12-Nov-15 6:57
mveGerry Schmitz12-Nov-15 6:57 
Questionin c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Member 1212766511-Nov-15 23:08
Member 1212766511-Nov-15 23:08 
XML
I have object with members of different types like this:
public class Node
    {
        public int itemID = -1;
        public int counter = 1;

        public Node parent = null;

        public List<Node> childs = new List<Node>();

        public Node nodeLink = null;
}
And I have  class tree
public class tree
    {

        public List<int> headerList = null;

        public Dictionary<int, Node> mapItemNodes = new Dictionary<int, Node>();

        public Dictionary<int, Node> mapItemLastNode = new Dictionary<int, Node>();

        public Node root = new Node();
}
And I need your help to serialize and deserialize an object of the class tree

AnswerRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Pete O'Hanlon11-Nov-15 23:16
mvePete O'Hanlon11-Nov-15 23:16 
GeneralRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
John Torjo12-Nov-15 2:56
professionalJohn Torjo12-Nov-15 2:56 
GeneralRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Dave Kreskowiak12-Nov-15 4:10
mveDave Kreskowiak12-Nov-15 4:10 
GeneralRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Member 1212766512-Nov-15 2:58
Member 1212766512-Nov-15 2:58 
AnswerRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Richard Andrew x6412-Nov-15 3:08
professionalRichard Andrew x6412-Nov-15 3:08 
AnswerRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Bernhard Hiller12-Nov-15 4:12
Bernhard Hiller12-Nov-15 4:12 
GeneralRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
BillWoodruff12-Nov-15 5:45
professionalBillWoodruff12-Nov-15 5:45 
AnswerRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
BillWoodruff12-Nov-15 6:03
professionalBillWoodruff12-Nov-15 6:03 
AnswerRe: in c#. how to serilialize and deserialize object with object of other classes inside it??? Pin
Member 1212766512-Nov-15 21:26
Member 1212766512-Nov-15 21:26 
Questionrun file with associated extension in current instance (ddeexec?) Pin
robinsc10-Nov-15 9:51
robinsc10-Nov-15 9:51 
AnswerRe: run file with associated extension in current instance (ddeexec?) Pin
John Torjo10-Nov-15 10:21
professionalJohn Torjo10-Nov-15 10:21 
GeneralRe: run file with associated extension in current instance (ddeexec?) Pin
robinsc10-Nov-15 11:10
robinsc10-Nov-15 11:10 
GeneralRe: run file with associated extension in current instance (ddeexec?) Pin
John Torjo10-Nov-15 11:31
professionalJohn Torjo10-Nov-15 11:31 
GeneralRe: run file with associated extension in current instance (ddeexec?) Pin
Eddy Vluggen10-Nov-15 14:22
professionalEddy Vluggen10-Nov-15 14:22 
GeneralRe: run file with associated extension in current instance (ddeexec?) Pin
John Torjo11-Nov-15 4:15
professionalJohn Torjo11-Nov-15 4:15 
AnswerRe: run file with associated extension in current instance (ddeexec?) Pin
Bernhard Hiller12-Nov-15 4:16
Bernhard Hiller12-Nov-15 4:16 
QuestionWindows App for NGO Pin
COder87610-Nov-15 7:01
COder87610-Nov-15 7:01 
AnswerRe: Windows App for NGO Pin
Gerry Schmitz10-Nov-15 8:00
mveGerry Schmitz10-Nov-15 8:00 
AnswerRe: Windows App for NGO Pin
Richard MacCutchan10-Nov-15 8:39
mveRichard MacCutchan10-Nov-15 8:39 
AnswerRe: Windows App for NGO Pin
BillWoodruff10-Nov-15 14:32
professionalBillWoodruff10-Nov-15 14:32 
QuestionMissingManifestResourceException Pin
Rob Shields10-Nov-15 2:58
Rob Shields10-Nov-15 2:58 
AnswerRe: MissingManifestResourceException Pin
OriginalGriff10-Nov-15 3:32
mveOriginalGriff10-Nov-15 3:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.