C#按字典顺序比较两个字符串

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

namespace Demo {

   class MyApplication {

      static void Main(string[] args) {

         string string1 = null;
         string string2 = null;

         string1 = "amit";
         string2 = "Amit";

         int myOutput = 0;

         myOutput = string.Compare(string1, string2);
         Console.WriteLine(myOutput.ToString());

         Console.ReadLine();
      }
   }
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265935.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论