Opc.Ua.Core
FlattenArray Method



Opc.Ua Namespace > Utils Class : FlattenArray Method
Converts a multidimension array to a flat array.
Syntax
'Declaration
 
Public Shared Function FlattenArray( _
   ByVal array As Array _
) As Array
'Usage
 
Dim array As Array
Dim value As Array
 
value = Utils.FlattenArray(array)
public static Array FlattenArray( 
   Array array
)
public:
static Array^ FlattenArray( 
   Array^ array
) 

Parameters

array
Remarks
The higher rank dimensions are written first. e.g. a array with dimensions [2,2,2] is written in this order: [0,0,0], [0,0,1], [0,1,0], [0,1,1], [1,0,0], [1,0,1], [1,1,0], [1,1,1]
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Utils Class
Utils Members