写入日志文件c#

时间:2015-08-06 16:05:13

标签: c# xml logfile

我有一个代码,我从XML文件中读取一个我必须保存结果的路径,如果程序中出现错误并停止,请记下错误。

我的程序有这样的结构:

namespace RiskFactorListUpdater
{
    public static class Program
    {
       public static void Main(string[] args)
        {
            try
            {
                //get the data
                filename=.....;
                // blah blah blah


                // more code

              }catch(Exception e)
               {
                //write in log file
             }

当我尝试读取文件名的路径时出现问题。我无法在catch"部分"中阅读它。我是c#的新手。这样做有简单的方法吗?

提前致谢

2 个答案:

答案 0 :(得分:5)

try块之前的public static class Program { public static void Main(string[] args) { string filename; try { //get the data filename=.....; // blah blah blah // more code }catch(Exception e) { //write in log file } 块中声明要使用的任何内容。

select Max(ranking) from things

答案 1 :(得分:0)

 you can use below method in proper formating way.
    public static class Program
        {
            public static string filename {get;set} 

            public static void Main(string[] args)
            {
                    filename="";
                    try
                    {      
                      filename=.....;
                    }
                   catch(Exception e)
                   {
                      //write in log file
                   }
           }
       }