《零基础学C#》第六章-实例02:中文字符比较——练习1

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/wtxhai/article/details/88558383

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Example602_01
{
    class Program
    {
        static void Main(string[] args)
        {
            string str1 = "馒头";
            string str2 = "馍馍";
            Console.WriteLine((str1 == str2));
            Console.ReadLine();
        }
    }
}
 

猜你喜欢

转载自blog.csdn.net/wtxhai/article/details/88558383