Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Title

string System.Console.Title
staticgetset

Definition at line 442 of file Console.cs.

443 {
444 [SupportedOSPlatform("windows")]
445 get
446 {
447 return ConsolePal.Title;
448 }
449 [UnsupportedOSPlatform("android")]
450 [UnsupportedOSPlatform("browser")]
451 [UnsupportedOSPlatform("ios")]
452 [UnsupportedOSPlatform("tvos")]
453 set
454 {
455 ConsolePal.Title = value ?? throw new ArgumentNullException("value");
456 }
457 }