public static T[] FftShift<T>(
	T[] a
)
where T : new()
Public Shared Function FftShift(Of T As New) ( 
	a As T()
) As T()public:
generic<typename T>
where T : gcnew()
static array<T>^ FftShift(
	array<T>^ a
)static member FftShift : 
        a : 'T[] -> 'T[]  when 'T : new()