位置:首页 > 软件操作教程 > 编程开发 > C# > 问题详情

输出参数的使用

提问人:刘冬梅发布时间:2020-10-12

 public class Test

{

    static void SplitPath(string path, out string dir, out string name) 

    {

      int i = path.Length;

      while (i > 0)

      {

         char ch = path[i – 1];

         if (ch == '\\') break;

         i--;

      }

      dir = path.Substring(0, i);

      name = path.Substring(i);

     }

     static void Main() 

     {

      string dir, name; //变量作为输出参数无须明确赋值

      SplitPath("c:\\Windows\\System\\hello.txt", out dir, out name);

      Console.WriteLine(dir);

      Console.WriteLine(name);

}

}  

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部