public delegate T CreateNewDefinitionFunction<T>(
IConfigurationCell parent,
byte[] buffer,
int startIndex,
out int parsedLength
)
where T : IChannelDefinition
Public Delegate Function CreateNewDefinitionFunction(Of T As IChannelDefinition) (
parent As IConfigurationCell,
buffer As Byte(),
startIndex As Integer,
<OutAttribute> ByRef parsedLength As Integer
) As T
generic<typename T>
where T : IChannelDefinition
public delegate T CreateNewDefinitionFunction(
IConfigurationCell^ parent,
array<unsigned char>^ buffer,
int startIndex,
[OutAttribute] int% parsedLength
)
function(parent, buffer, startIndex, parsedLength);