Exemple #1
0
        void GetCharacterAtPosition()
        {
            string str   = "The main target is down in hill";
            int    index = 17;
            string c     = objStrOperations.GetCharacterAtPosition(str, index);

            Console.WriteLine(c);
        }