Exemplo n.º 1
0
        static void Main(string[] args)
        {
            byte a = 10;
            //a = 256;
            //a = "a";

            int x = a;

            //a = x;

            float y = 5.2f;

            //x =y;
            y = x;

            string s = "abscd";
            //char[] cs = new[] { 'a', 'b', 's', 'c', 'd' };

            char c = 'c';

            c = s[0];

            StringOperations so = new StringOperations();

            so.KelimeHarfSayisi();

            Console.ReadLine();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            byte a = 10;
            //a = 256;
            //a = "a";

            int x = a;

            //a = x;

            float y = 5.2f;

            //x =y;
            y = x;

            string s = "abscd";
            //char[] cs = new[] { 'a', 'b', 's', 'c', 'd' };

            char c = 'c';

            c = s[0];

            var di = new Diziler();

            di.Dizi();

            var so = new StringOperations();
            //so.StringMetodlari();
            //so.GirilenMetinBosMuKontroluYap();
            //so.EnUzunKelimeyiBul();
        }