| RegisterUtilitySetValuesInSubKeyWithSeparator Method |
Aggiunge un elemento agli elementi già presenti in una varibile.
Namespace: QsInformatica.UtilsAssembly: QsInformatica.Utils (in QsInformatica.Utils.dll) Version: 27.1.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 String
- Stringa con la chiave.
- name String
- Nome della variabile.
- value Object
- Valore da aggiungere.
- separator Char
- Carattere separatore tra i vari elementi all'interno della varibile.
- maxElements Int32
- Massimo numero di elementi permessi nella variabile, nel caso sfori viene cancellato l'elemento più vecchio.
- allowDuplicate Boolean
- Indica se ci possono essere valori duplicati all'interno della stessa chiave.
See Also