每次按下按钮时,我都会在文件中写入一行文本。
我已经定义了一个这样的静态类:
public static class PalletRecord
{
public static string MachineName { get; set; }
public static DateTime TimeStamp { get; set; }
public static string BranchPlant { get; set; }
public static string Location { get; set; }
public static string Data { get; set; }
public static string ItemCode { get; set; }
public static string ItemDescription { get; set; }
public static decimal Quantity { get; set; }
}
每次我需要写入文件时,我都会填充静态类属性并使用 File.AppendAllLines 写入文本文件。
我应该用非静态类来做吗?