我有一个在我的项目中共享的配置类:
public class BarcodeConfig
{
public string LotStandardDigits { get; set; }
public string LotOldStandardDigits { get; set; }
public int LotOldNumofDigits { get; set; }
public int LotStandardNumofDigits { get; set; }
}
在我的主类实现中,我有 2 个类。一个静态(用于实用程序,另一个包含我所有预期的逻辑:
public static class BarcodeUtil
{
...
}
public class BarcodeBLL
{
...
}
我希望能够为我的静态类和普通类使用相同的配置类。最好将配置类设为静态吗?或不?