You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
466 B

using System.ComponentModel;
using System.Data;
using System.Net.Http.Headers;
namespace FileCompare
{
internal class Program
{
static void Main(string[] args)
{
var files = new List<(string name, string source, string target)>()
{
("log",@"C:\Users\coder\Desktop\Logs_20240103.txt",@"C:\Users\coder\Desktop\Logs_20240103 - 副本.txt")
};
var list = new List<AFileCompare>();