StrongBox<T> 생성자

정의

오버로드

StrongBox<T>()

참조 호출에서 사용될 때 값을 받을 수 있는 새 StrongBox를 초기화합니다.

StrongBox<T>(T)

제공된 값을 사용하여 StrongBox<T> 클래스의 새 인스턴스를 초기화합니다.

StrongBox<T>()

Source:
StrongBox.cs
Source:
StrongBox.cs
Source:
StrongBox.cs

참조 호출에서 사용될 때 값을 받을 수 있는 새 StrongBox를 초기화합니다.

public:
 StrongBox();
public StrongBox ();
Public Sub New ()

적용 대상

StrongBox<T>(T)

Source:
StrongBox.cs
Source:
StrongBox.cs
Source:
StrongBox.cs

제공된 값을 사용하여 StrongBox<T> 클래스의 새 인스턴스를 초기화합니다.

public:
 StrongBox(T value);
public StrongBox (T value);
new System.Runtime.CompilerServices.StrongBox<'T> : 'T -> System.Runtime.CompilerServices.StrongBox<'T>
Public Sub New (value As T)

매개 변수

value
T

StrongBox<T>에서 참조할 값입니다.

적용 대상