DirectoryInfo directory;
public string Name {
get { return this.directory.Name; }
set { this.directory.Name = value; }
}
你好。我在 c# 中有这段代码。它不起作用我收到此错误:
属性或索引器 System.Io.FileSystemInfo.Name 不能分配给 - 它是只读的。
我能做些什么 ?