Читати англійською Редагувати

Поділитися через


SymbolResolver.Add Method

Definition

Adds an object reference to the dictionary of symbols keyed by string name.

Overloads

Add(KeyValuePair<String,Object>)

Adds a symbol using the specified key/value pair.

Add(String, Object)

Adds a symbol using the specified symbol name and value.

Add(String, Type)

Adds a symbol using the specified symbol name and type.

Add(String, Object, Type)

Adds a symbol using the specified symbol name, value, and type.

Add(KeyValuePair<String,Object>)

Adds a symbol using the specified key/value pair.

C#
public void Add(System.Collections.Generic.KeyValuePair<string,object> item);

Parameters

item
KeyValuePair<String,Object>

The symbol to add.

Implements

Applies to

.NET Framework 4.8.1 та інші версії
Продукт Версії
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Add(String, Object)

Adds a symbol using the specified symbol name and value.

C#
public void Add(string key, object value);

Parameters

key
String

The name of the symbol.

value
Object

The value of the symbol to reference.

Implements

Applies to

.NET Framework 4.8.1 та інші версії
Продукт Версії
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Add(String, Type)

Adds a symbol using the specified symbol name and type.

C#
public void Add(string key, Type type);

Parameters

key
String

The name of the symbol.

type
Type

The type of the symbol value.

Remarks

The symbol is added with the default value for the specified type.

Applies to

.NET Framework 4.8.1 та інші версії
Продукт Версії
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Add(String, Object, Type)

Adds a symbol using the specified symbol name, value, and type.

C#
public void Add(string key, object value, Type type);

Parameters

key
String

The name of the symbol.

value
Object

The value of the symbol to reference.

type
Type

The type of the symbol value.

Applies to

.NET Framework 4.8.1 та інші версії
Продукт Версії
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1