gpt4 book ai didi

c# - 在 C# 中访问静态方法

转载 作者:太空宇宙 更新时间:2023-11-03 17:36:49 25 4
gpt4 key购买 nike

我有这个类:

public static class CsvWriter
{
private static StreamWriter _writer = new StreamWriter(@"c:\temp\ssis_list.csv");

public static StreamWriter Writer
{
get { return _writer; }
}
}

这是从另一个类(class)调用的
 class Program
{
...
static void GetConnections(string path,string pkgname,string server)
{

_writer.WriteLine(myLine);
}
}

哪个有这个错误
The name '_writer' does not exist in the current context    

我怎样才能解决这个问题?

最佳答案

你想要CsvWriter.Writer.WriteLine .

关于c# - 在 C# 中访问静态方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1602652/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com