DefaultValueAttribute コンストラクター

定義

DefaultValueAttribute クラスの新しいインスタンスを初期化します。

オーバーロード

DefaultValueAttribute(Boolean)

DefaultValueAttribute クラスの新しいインスタンスを Boolean 値に初期化します。

DefaultValueAttribute(Type, String)

DefaultValueAttribute クラスの新しいインスタンスを初期化し、インバリアント カルチャを変換コンテキストとして使用して、指定した値を指定した型に変換します。

DefaultValueAttribute(UInt64)

DefaultValueAttribute クラスの新しいインスタンスを UInt64 値に初期化します。

DefaultValueAttribute(UInt32)

DefaultValueAttribute クラスの新しいインスタンスを UInt32 値に初期化します。

DefaultValueAttribute(UInt16)

DefaultValueAttribute クラスの新しいインスタンスを UInt16 値に初期化します。

DefaultValueAttribute(String)

DefaultValueAttribute クラスの新しいインスタンスを String に初期化します。

DefaultValueAttribute(SByte)

DefaultValueAttribute クラスの新しいインスタンスを SByte 値に初期化します。

DefaultValueAttribute(Single)

DefaultValueAttribute クラスの新しいインスタンスを単精度浮動小数点数に初期化します。

DefaultValueAttribute(Int64)

DefaultValueAttribute クラスの新しいインスタンスを 64 ビット符号付き整数に初期化します。

DefaultValueAttribute(Int32)

DefaultValueAttribute クラスの新しいインスタンスを 32 ビット符号付き整数に初期化します。

DefaultValueAttribute(Int16)

DefaultValueAttribute クラスの新しいインスタンスを 16 ビット符号付き整数に初期化します。

DefaultValueAttribute(Double)

DefaultValueAttribute クラスの新しいインスタンスを倍精度浮動小数点数に初期化します。

DefaultValueAttribute(Char)

DefaultValueAttribute クラスの新しいインスタンスを Unicode 文字に初期化します。

DefaultValueAttribute(Byte)

DefaultValueAttribute クラスの新しいインスタンスを 8 ビット符号なし整数に初期化します。

DefaultValueAttribute(Object)

DefaultValueAttribute クラスの新しいインスタンスを初期化します。

DefaultValueAttribute(Boolean)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを Boolean 値に初期化します。

public:
 DefaultValueAttribute(bool value);
public DefaultValueAttribute (bool value);
new System.ComponentModel.DefaultValueAttribute : bool -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Boolean)

パラメーター

value
Boolean

既定値の Boolean

適用対象

DefaultValueAttribute(Type, String)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを初期化し、インバリアント カルチャを変換コンテキストとして使用して、指定した値を指定した型に変換します。

public:
 DefaultValueAttribute(Type ^ type, System::String ^ value);
public DefaultValueAttribute (Type type, string value);
public DefaultValueAttribute (Type type, string? value);
new System.ComponentModel.DefaultValueAttribute : Type * string -> System.ComponentModel.DefaultValueAttribute
Public Sub New (type As Type, value As String)

パラメーター

type
Type

値の変換後の型を表す Type

value
String

指定した型の String と英語 (U.S.) カルチャを使用して、その型に変換できる TypeConverter

適用対象

DefaultValueAttribute(UInt64)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

重要

この API は CLS 準拠ではありません。

DefaultValueAttribute クラスの新しいインスタンスを UInt64 値に初期化します。

public:
 DefaultValueAttribute(System::UInt64 value);
[System.CLSCompliant(false)]
public DefaultValueAttribute (ulong value);
[<System.CLSCompliant(false)>]
new System.ComponentModel.DefaultValueAttribute : uint64 -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As ULong)

パラメーター

value
UInt64

既定の符号なし long 型整数値。

属性

適用対象

DefaultValueAttribute(UInt32)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

重要

この API は CLS 準拠ではありません。

DefaultValueAttribute クラスの新しいインスタンスを UInt32 値に初期化します。

public:
 DefaultValueAttribute(System::UInt32 value);
[System.CLSCompliant(false)]
public DefaultValueAttribute (uint value);
[<System.CLSCompliant(false)>]
new System.ComponentModel.DefaultValueAttribute : uint32 -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As UInteger)

パラメーター

value
UInt32

既定の符号なし整数値。

属性

適用対象

DefaultValueAttribute(UInt16)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

重要

この API は CLS 準拠ではありません。

DefaultValueAttribute クラスの新しいインスタンスを UInt16 値に初期化します。

public:
 DefaultValueAttribute(System::UInt16 value);
[System.CLSCompliant(false)]
public DefaultValueAttribute (ushort value);
[<System.CLSCompliant(false)>]
new System.ComponentModel.DefaultValueAttribute : uint16 -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As UShort)

パラメーター

value
UInt16

既定の符号なし 16 ビット整数値。

属性

適用対象

DefaultValueAttribute(String)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを String に初期化します。

public:
 DefaultValueAttribute(System::String ^ value);
public DefaultValueAttribute (string value);
public DefaultValueAttribute (string? value);
new System.ComponentModel.DefaultValueAttribute : string -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As String)

パラメーター

value
String

既定値の String

適用対象

DefaultValueAttribute(SByte)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

重要

この API は CLS 準拠ではありません。

DefaultValueAttribute クラスの新しいインスタンスを SByte 値に初期化します。

public:
 DefaultValueAttribute(System::SByte value);
[System.CLSCompliant(false)]
public DefaultValueAttribute (sbyte value);
[<System.CLSCompliant(false)>]
new System.ComponentModel.DefaultValueAttribute : sbyte -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As SByte)

パラメーター

value
SByte

既定の符号付きバイト値。

属性

適用対象

DefaultValueAttribute(Single)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを単精度浮動小数点数に初期化します。

public:
 DefaultValueAttribute(float value);
public DefaultValueAttribute (float value);
new System.ComponentModel.DefaultValueAttribute : single -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Single)

パラメーター

value
Single

既定値の単精度浮動小数点数。

適用対象

DefaultValueAttribute(Int64)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを 64 ビット符号付き整数に初期化します。

public:
 DefaultValueAttribute(long value);
public DefaultValueAttribute (long value);
new System.ComponentModel.DefaultValueAttribute : int64 -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Long)

パラメーター

value
Int64

既定値の 64 ビット符号付き整数。

適用対象

DefaultValueAttribute(Int32)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを 32 ビット符号付き整数に初期化します。

public:
 DefaultValueAttribute(int value);
public DefaultValueAttribute (int value);
new System.ComponentModel.DefaultValueAttribute : int -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Integer)

パラメーター

value
Int32

既定値の 32 ビット符号付き整数。

適用対象

DefaultValueAttribute(Int16)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを 16 ビット符号付き整数に初期化します。

public:
 DefaultValueAttribute(short value);
public DefaultValueAttribute (short value);
new System.ComponentModel.DefaultValueAttribute : int16 -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Short)

パラメーター

value
Int16

既定値の 16 ビット符号付き整数。

適用対象

DefaultValueAttribute(Double)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを倍精度浮動小数点数に初期化します。

public:
 DefaultValueAttribute(double value);
public DefaultValueAttribute (double value);
new System.ComponentModel.DefaultValueAttribute : double -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Double)

パラメーター

value
Double

既定値の倍精度浮動小数点数。

適用対象

DefaultValueAttribute(Char)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを Unicode 文字に初期化します。

public:
 DefaultValueAttribute(char value);
public DefaultValueAttribute (char value);
new System.ComponentModel.DefaultValueAttribute : char -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Char)

パラメーター

value
Char

既定値の Unicode 文字。

適用対象

DefaultValueAttribute(Byte)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを 8 ビット符号なし整数に初期化します。

public:
 DefaultValueAttribute(System::Byte value);
public DefaultValueAttribute (byte value);
new System.ComponentModel.DefaultValueAttribute : byte -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Byte)

パラメーター

value
Byte

既定値の 8 ビット符号なし整数。

適用対象

DefaultValueAttribute(Object)

ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs
ソース:
DefaultValueAttribute.cs

DefaultValueAttribute クラスの新しいインスタンスを初期化します。

public:
 DefaultValueAttribute(System::Object ^ value);
public DefaultValueAttribute (object value);
public DefaultValueAttribute (object? value);
new System.ComponentModel.DefaultValueAttribute : obj -> System.ComponentModel.DefaultValueAttribute
Public Sub New (value As Object)

パラメーター

value
Object

既定値を表す Object

適用対象