Toggle navigation
Hot Examples
IT
EN
RU
DE
FR
ES
PT
IT
JP
ZH
KO
C#
PHP
C#
Java
Go
C++
Python
JS
TS
Cerca
Home
VersionSample
Csharp4
DefaultParameterSample
C# Class VersionSample.Csharp4.DefaultParameterSample
省略可能パラメーター(パラメーターの規定値)、名前付きパラメーターは、IL レベルでは .NET 1.0 の頃からある。 (C# 1.0 の頃でも、
System.Runtime.InteropServices.OptionalAttribute
を付ければ、VB からは省略可能パラメーターとして使える。) C# 的には 4.0 から入った機能だけども、上記の .NET 1.0 からある仕組みに対応しただけなので、.NET 1.0 上でも動く。 (利用に多少注意が必要な機能なので、結構長い間機能追加をためらってた。)
Mostra file
Open project: ufcpp/UfcppSample
Public Methods
Method
Description
SameAsX
( ) :
void
Sum
(
int
x
,
int
y
,
int
z
) :
int
X
( ) :
void
Method Details
SameAsX()
public
static
method
public
static
SameAsX
( ) :
void
return
void
Sum()
public
static
method
public
static
Sum
(
int
x
,
int
y
,
int
z
) :
int
x
int
y
int
z
int
return
int
X()
public
static
method
public
static
X
( ) :
void
return
void