当前位置 : 主页 > 编程语言 > c语言 >

if (arry.Contains(str))

来源:互联网 收集:自由互联 发布时间:2023-09-03
using System; using System.Collections.Generic; using System.Linq; using System.Text;namespace ConsoleApplication5 { class Program { static void Main(string[] args) { String[] arry =new String[]{"abcdef","ghijklmn"}; String str="abcd"; if (


using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;namespace ConsoleApplication5
 {
     class Program
     {
         static void Main(string[] args)
         {
             String[] arry =new String[]{"abcdef","ghijklmn"};
             String str="abcd";
             if (arry.Contains(str))
             {
                 Console.WriteLine("A");
             } 
             else
             {
                 Console.WriteLine("B");//B
             }
         }
     }
 }
【文章出处:日本大带宽服务器 http://www.558idc.com/jap.html 欢迎留下您的宝贵建议】
上一篇:C#线程操作常见的六大操作方法
下一篇:没有了
网友评论