コード例 #1
0
        public void Remove_end_spaces_test()
        {
            Text.Text text = new Text.Text();
            text.Add("Message       ");
            text.Remove_end_spaces();

            Assert.AreEqual(text.At_index(0), "Message");
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: genebloch/laboratory_works
        static void Main(string[] args)
        {
            Text.Text text = new Text.Text();

            text.Add("   sentence  ");
            text.Add("we are    here");

            text.Show();

            text.Remove_end_spaces();
            text.Remove_begin_spaces();
            text.Remove_whitespaces();

            Console.WriteLine("- - - - - - - - - -");

            text.Show();

            Console.ReadKey();
        }