csharp 如何在方法中使用可选参数的示例。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 如何在方法中使用可选参数的示例。相关的知识,希望对你有一定的参考价值。
static void PrintStuff(int i, int j = 4, string s = "optional string")
{
Console.WriteLine(i + " " + j + " " + s);
}
static void Main(string[] args)
{
PrintStuff(100);
PrintStuff(4, j: 25, s: "chosen string");
PrintStuff(j: 89, i: 27);
PrintStuff(50, s: "another chosen string");
}
// 100 4 optional string
// 4 25 chosen string
// 27 89 optional string
// 50 4 another chosen string
以上是关于csharp 如何在方法中使用可选参数的示例。的主要内容,如果未能解决你的问题,请参考以下文章
csharp 如何使用方法使用命名参数的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/dotnet/csharp/programmi
csharp 如何使用方法使用命名参数的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/dotnet/csharp/programmi
csharp 使用params关键字指定采用可变数量参数的方法参数的示例。
csharp 使用params关键字指定采用可变数量参数的方法参数的示例。
抽象方法中的可选参数?可能吗?
jQuery中bind()方法中的参数