Click or drag to resize
UtilitiesDupe Method
Duplicate a byte array, replacing null with byte[0]. Doing this instead of .Clone() because it better handles nulls and it may be faster.

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public static byte[] Dupe(
	byte[] bIn
)

Parameters

bIn
Type: SystemByte
The array to copy

Return Value

Type: Byte
The new array.
See Also