RegisterUtility.SetValuesInSubKeyWithSeparator Method

QsInformatica.Utils

RegisterUtilitySetValuesInSubKeyWithSeparator Method

Aggiunge un elemento agli elementi già presenti in una varibile.

Namespace:  QsInformatica.Utils
Assembly:  QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 22.4.2.0 (22.4.2.0)
Syntax
public static void SetValuesInSubKeyWithSeparator(
	string key,
	string name,
	Object value,
	char separator,
	int maxElements,
	bool allowDuplicate
)
Public Shared Sub SetValuesInSubKeyWithSeparator ( 
	key As String,
	name As String,
	value As Object,
	separator As Char,
	maxElements As Integer,
	allowDuplicate As Boolean
)
public:
static void SetValuesInSubKeyWithSeparator(
	String^ key, 
	String^ name, 
	Object^ value, 
	wchar_t separator, 
	int maxElements, 
	bool allowDuplicate
)
static member SetValuesInSubKeyWithSeparator : 
        key : string * 
        name : string * 
        value : Object * 
        separator : char * 
        maxElements : int * 
        allowDuplicate : bool -> unit 

Parameters

key
Type: SystemString
Stringa con la chiave.
name
Type: SystemString
Nome della variabile.
value
Type: SystemObject
Valore da aggiungere.
separator
Type: SystemChar
Carattere separatore tra i vari elementi all'interno della varibile.
maxElements
Type: SystemInt32
Massimo numero di elementi permessi nella variabile, nel caso sfori viene cancellato l'elemento più vecchio.
allowDuplicate
Type: SystemBoolean
Indica se ci possono essere valori duplicati all'interno della stessa chiave.
See Also