Ejemplo n.º 1
0
        static void MyStringExamples()
        {
            StringTypes myTypes = new StringTypes();

            myTypes.SampleString();
            myTypes.AddString();
            string words = myTypes.StringBuilderExample("Hello", "C Sharp", "Class");

            Console.WriteLine(words);
            myTypes.CharTypeExample();
            myTypes.EscapeExample();
            myTypes.PlaceholderExample();
            myTypes.ArrayExample();
            myTypes.MyHouseArray();
            myTypes.MultiArraySample();
        }