Example #1
0
 public static void printTestArray(TestMultiArray testArray)
 {
     String display = "";
     for (int i=0; i<testArray.matrix.Length; i++){
         for (int j=0; j<testArray.matrix[i].Length; j++){
             display += testArray.matrix[i][j] + " ";
         }
         display += "\n";
     }
     Console.Out.WriteLine(display);
 }
Example #2
0
    public static void printTestArray(TestMultiArray testArray)
    {
        String display = "";

        for (int i = 0; i < testArray.matrix.Length; i++)
        {
            for (int j = 0; j < testArray.matrix[i].Length; j++)
            {
                display += testArray.matrix[i][j] + " ";
            }
            display += "\n";
        }
        Console.Out.WriteLine(display);
    }
Example #3
0
    /**
     * This method shows how easy is to serialize and de-serialize C# objects
     * to/from XML. The XML representation of the objects is a standard WOX represntation.
     * For more information about the XML representation please visit:
     * http://woxserializer.sourceforge.net/
     */
    public static void main(String[] args)
    {
        TestMultiArray test = new TestMultiArray(new int[][]{ new int[]{23, 56, 89, 36, 68},
                                                              new int[]{87, 64, 88, 32},
                                                              new int[]{78, 80, 21, 29, 34, 67} } );

        String filename = "C:\\TestMultiArraysCSharp.xml";
        //print the object
        printTestArray(test);
        //object to standard XML
        Easy.save(test, filename);
        //load the object from the XML file
        TestMultiArray newTest = (TestMultiArray)Easy.load(filename);
        //print the new object - it is the same as before
        printTestArray(newTest);
    }
Example #4
0
    /**
     * This method shows how easy is to serialize and de-serialize C# objects
     * to/from XML. The XML representation of the objects is a standard WOX represntation.
     * For more information about the XML representation please visit:
     * http://woxserializer.sourceforge.net/
     */
    public static void main(String[] args)
    {
        TestMultiArray test = new TestMultiArray(new int[][] { new int[] { 23, 56, 89, 36, 68 },
                                                               new int[] { 87, 64, 88, 32 },
                                                               new int[] { 78, 80, 21, 29, 34, 67 } });

        String filename = "C:\\TestMultiArraysCSharp.xml";

        //print the object
        printTestArray(test);
        //object to standard XML
        Easy.save(test, filename);
        //load the object from the XML file
        TestMultiArray newTest = (TestMultiArray)Easy.load(filename);

        //print the new object - it is the same as before
        printTestArray(newTest);
    }