运行 ❯
获得您
自己的 C#
服务器
×
更改方向
更改主题,深色/浅色
去往空间
using System; namespace MyApplication { class Program { static void MyMethod(string country = "Norway") { Console.WriteLine(country); } static void Main(string[] args) { MyMethod("Sweden"); MyMethod("India"); MyMethod(); MyMethod("USA"); } } }
瑞典
印度
挪威
美国