菜鸟在这里。我正在尝试编写代码来显示和打开文件路径,经过大量搜索和痛苦后,我仍然无法克服An object reference is required for the non-static field, method, or property (CS0120)
错误。
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using ArrayList = System.Collections.ArrayList;
namespace Risk_Stats
{
public class Risk_stats_CSV_generator
{
string outputPath = Path.GetFileName( Path.GetDirectoryName( @"U:\XXXX" ) );
public static void Main(string[] args)
{
System.Diagnostics.Process.Start(outputpath);
}
}
}
我正在努力理解有关此错误的可用解决方案。对象引用是什么意思?它将如何放置在代码中?