Ejemplo n.º 1
0
 public int Serialize()
 {
     processed = 0;
     if (entry is SingleEntry)
     {
         (entry as SingleEntry).Process(SerializeItem);
     }
     else
     {
         entry.Process(SerializeItem);
     }
     return(processed);
 }