UtilWriteAllT(Type, IListT, Stream) Method
Write List of objects into array of struct in stream.
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 void WriteAll<T>(
Type t,
IList<T> lst,
Stream stm
)
Public Shared Sub WriteAll(Of T) (
t As Type,
lst As IList(Of T),
stm As Stream
)
Dim t As Type
Dim lst As IList(Of T)
Dim stm As Stream
Util.WriteAll(t, lst, stm)
public:
generic<typename T>
static void WriteAll(
Type^ t,
IList<T>^ lst,
Stream^ stm
)
static member WriteAll :
t : Type *
lst : IList<'T> *
stm : Stream -> unit
- t Type
- Type.
- lst IListT
- list of object.
- stm Stream
- Stream.
- T
- Type.