我想用C#编写代码
例如。
如果string1 = "Hello World"
和string2 = "Hello World"
>测试通过
如果string1 = "Hello World"
和string2 = "Hello Tom"
>测试失败
答案 0 :(得分:3)
发布代码片段总是很好,所以它证明了你们真的尝试了一些东西。但是你去了,这是一个非常简单的任务......
public class TestClass
{
public static void Main(string[] args)
{
bool isEqual = DownloadString("www.abc.com") == DownloadString("www.xyz.com")
// do whatever you want with it
}
private static string DownloadString(string address)
{
using (WebClient client = new WebClient())
{
return client.DownloadString(address);
}
}
}