/// <summary>
        /// Start point for this application.
        /// </summary>
        public static void Main()
        {
            ClassWitItemProperties classWithItems = new ClassWitItemProperties();
            classWithItems.Item4 = 10;
            Console.WriteLine(classWithItems.Item4);

            Console.WriteLine();

            XmlDocument projectXml = new XmlDocument();
            projectXml.PreserveWhitespace = true;
            projectXml.Load("ProjectXml.xml");
            Console.WriteLine(projectXml.OuterXml);
        }
        /// <summary>
        /// Start point for this application.
        /// </summary>
        public static void Main()
        {
            ClassWitItemProperties classWithItems = new ClassWitItemProperties();

            classWithItems.Item4 = 10;
            Console.WriteLine(classWithItems.Item4);

            Console.WriteLine();

            XmlDocument projectXml = new XmlDocument();

            projectXml.PreserveWhitespace = true;
            projectXml.Load("ProjectXml.xml");
            Console.WriteLine(projectXml.OuterXml);
        }