Wombat.MamaMsg.getVectorF64 C# (CSharp) Method

getVectorF64() public method

Get a vector of 64 bit floating point numbers.
public getVectorF64 ( string name, ushort fid ) : double[]
name string
fid ushort
return double[]
        public double[] getVectorF64(
			string name, 
			ushort fid)
        {
            EnsurePeerCreated();
            IntPtr array = IntPtr.Zero;
            uint size = 0;
            int code = NativeMethods.mamaMsg_getVectorF64(nativeHandle, name, fid,ref array, ref size);
            CheckResultCode(code);
            double[] ret = new double[size];
            Marshal.Copy(array, ret, 0, (int)size);

            return ret;
        }

Same methods

MamaMsg::getVectorF64 ( Wombat.MamaFieldDescriptor descriptor ) : double[]
MamaMsg::getVectorF64 ( Wombat.MamaFieldDescriptor descriptor, double valueIfMissing ) : double[]
MamaMsg::getVectorF64 ( string name, ushort fid, double valueIfMissing ) : double[]
MamaMsg