|
MessageLoggeradd Method (ListInt32, String, String)
|
add a message starting with an enumeration of integers, ending with a message given either in singular or plural depending on the number of integers.
Namespace:
Karamba.Utilities
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic void add(
List<int> items,
string message_singular,
string message_plural
)
Public Sub add (
items As List(Of Integer),
message_singular As String,
message_plural As String
)
public:
void add(
List<int>^ items,
String^ message_singular,
String^ message_plural
)
member add :
items : List<int> *
message_singular : string *
message_plural : string -> unit
Parameters
- items
- Type: System.Collections.GenericListInt32
list of integers to be listed. - message_singular
- Type: SystemString
additional message in case there is only one integer number. - message_plural
- Type: SystemString
additional message in case there are multiple integer numbers.
See Also