通过c#

时间:2019-02-07 14:52:23

标签: c# xml

我有一个xml文件,该文件对特定报告文件夹的路径进行了硬编码。 例如。 C:\ git \ ProjNew \ Proj \ Projects_2018 \和C:\ git \ ProjNew \ Proj \ Reports \

和xml看起来像这样:

<SampleFiles>   
        <SampleFileLocation>C:\git\ProjNew\Proj\Projects_2018\ </SampleFileLocation>    
        <ReportFileLocation>C:\git\ProjNew\Proj\Reports\</ReportFileLocation>   
    </SampleFiles>

当某人从git获取此项目时,他们必须手动转到此路径并进行更改。在后台代码中,发生了很多逻辑,是否有办法在c#中对其进行更新

c#文件如下所示:

[XmlRoot(ElementName = "SampleFiles")]
    public class SampleFiles
    {
        public string SampleFileLocation { get; set; }
        public string ReportFileLocation { get; set; }

        public SampleFiles()
        {
            SampleFileLocation = null;
            ReportFileLocation = null;
        }
    }

我该如何在c#中修改此代码,以使每个用户都不需要更新它。

谢谢

0 个答案:

没有答案