csharp 如何使用方法使用命名参数的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/dotnet/csharp/programmi

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 如何使用方法使用命名参数的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/dotnet/csharp/programmi相关的知识,希望对你有一定的参考价值。

static void Main(string[] args)
{
  // The method can be called in the normal way, by using positional arguments.
  Console.WriteLine(CalculateBMI(123, 64));

  // Named arguments can be supplied for the parameters in either order.
  Console.WriteLine(CalculateBMI(weight: 123, height: 64));
  Console.WriteLine(CalculateBMI(height: 64, weight: 123));

  // Positional arguments cannot follow named arguments.
  // The following statement causes a compiler error.
  //Console.WriteLine(CalculateBMI(weight: 123, 64));

  // Named arguments can follow positional arguments.
  Console.WriteLine(CalculateBMI(123, height: 64));
}

static int CalculateBMI(int weight, int height)
{
  return (weight * 703) / (height * height);
}

//  21
//  21
//  21
//  21

以上是关于csharp 如何使用方法使用命名参数的示例。来自Microsoft C#参考https://docs.microsoft.com/en-us/dotnet/csharp/programmi的主要内容,如果未能解决你的问题,请参考以下文章

csharp 如何在方法中使用可选参数的示例。

csharp 如何在方法中使用可选参数的示例。

csharp 如何使用continue运算符的示例。来自Microsoft C#Reference。 https://docs.microsoft.com/en-us/dotnet/csharp/la

csharp 如何使用continue运算符的示例。来自Microsoft C#Reference。 https://docs.microsoft.com/en-us/dotnet/csharp/la

csharp 使用params关键字指定采用可变数量参数的方法参数的示例。

csharp 使用params关键字指定采用可变数量参数的方法参数的示例。