怎样用C#判断一个字符串是否包含另一个字符串?简单吗

2025-03-06 19:20:58
推荐回答(1个)
回答1:

string a ="abcss";
bool IsContain=a.Contains("abc");