📜  C#|如何更改控制台标题

📅  最后修改于: 2021-05-30 00:31:16             🧑  作者: Mango

给定普通的C#控制台,任务是找到Title的默认值并将其更改为其他值。

方法:可以使用C#中System包的Console类中的Title属性来完成此操作。标题是指要在控制台标题栏中显示的字符串。标题字符串的最大长度为24500个字符。如果在get操作中检索到的标题长于24500个字符,则它将给出InvalidOperationException ;如果在set操作中检索到的标题长于24500个字符,则将给出ArgumentOutOfRangeException

程序1:查找默认标题

// C# program to illustrate the
// Console.Title Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
  
        // Display current Title
        Console.WriteLine("Default Title: {0}",
                          Console.Title);
    }
}
}

输出:

程序2:将标题更改为100

// C# program to illustrate the
// Console.Title Property
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
  
namespace GFG {
  
class Program {
  
    static void Main(string[] args)
    {
  
        // Display current Title
        Console.WriteLine("Default Title: {0}",
                               Console.Title);
  
        // Set the Title to GeeksForGeeks
        Console.Title = "GeeksForGeeks";
  
        // Display current Title
        Console.WriteLine("Changed Title: {0}",
                               Console.Title);
    }
}
}

输出: