Exemplo n.º 1
0
 internal static void NewInstanceFromXml(XmlNode detail, ref Place result, int id)
 {
     if (detail.Name != "Casino")
     {
         return;
     }
     result = new Casino(id);
 }
Exemplo n.º 2
0
 internal static void NewInstanceFromXml(XmlNode detail, ref Place result, int id)
 {
     if (detail.Name != "Casino")
     {
         return;
     }
     result = new Casino(id);
 }