UtilWriteAllT(Type, IListT) Method
Write List of objects into array of struct in byte array.
Note: does not work with stucts containing VARSTR fields and STRUCT fields.
Namespace: Vajhoej.RecordAssembly: Record (in Record.dll) Version: 0.0.0.0
public static byte[] WriteAll<T>(
Type t,
IList<T> lst
)
Public Shared Function WriteAll(Of T) (
t As Type,
lst As IList(Of T)
) As Byte()
Dim t As Type
Dim lst As IList(Of T)
Dim returnValue As Byte()
returnValue = Util.WriteAll(t, lst)
public:
generic<typename T>
static array<unsigned char>^ WriteAll(
Type^ t,
IList<T>^ lst
)
static member WriteAll :
t : Type *
lst : IList<'T> -> byte[]
- t Type
- Type.
- lst IListT
- List of objects.
- T
- Type.
ByteByte array.