UtilReadAllT(Type, Byte) Method
Read array of struct in byte array into List of objects.
Namespace: Vajhoej.RecordAssembly: Record (in Record.dll) Version: 0.0.0.0
public static IList<T> ReadAll<T>(
Type t,
byte[] b
)
where T : class, new()
Public Shared Function ReadAll(Of T As {Class, New}) (
t As Type,
b As Byte()
) As IList(Of T)
Dim t As Type
Dim b As Byte()
Dim returnValue As IList(Of T)
returnValue = Util.ReadAll(t, b)
public:
generic<typename T>
where T : ref class, gcnew()
static IList<T>^ ReadAll(
Type^ t,
array<unsigned char>^ b
)
static member ReadAll :
t : Type *
b : byte[] -> IList<'T> when 'T : not struct, new()
- t Type
- Type.
- b Byte
- Byte array.
- T
- Type.
IListTList of objects.