位置:首頁 > 軟件操作教程 > 編程開發(fā) > C# > 問題詳情

輸出參數(shù)的使用

提問人:劉冬梅發(fā)布時(shí)間: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; //變量作為輸出參數(shù)無須明確賦值

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

      Console.WriteLine(dir);

      Console.WriteLine(name);

}

}  

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部