Class Concat
A module used to concatenate data
Inheritance
System.Object
Concat
Namespace: Netly.Core
Assembly: Netly.Core.dll
Syntax
public static class Concat : object
Methods
Bytes(Byte[][])
Concatenate bytes values
Declaration
public static byte[] Bytes(params byte[][] values)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[][] | values | Values |
Returns
| Type | Description |
|---|---|
| System.Byte[] | Returns a bytes with concatenated data |
String(String[])
Concatenate string values
Declaration
public static string String(params string[] values)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String[] | values | Values |
Returns
| Type | Description |
|---|---|
| System.String | Returns a string with concatenated data |