Wombat.MamaMsg.getVectorI64 C# (CSharp) Method

getVectorI64() public method

Get a vector of signed 64 bit integers.
public getVectorI64 ( string name, ushort fid, long valueIfMissing ) : long[]
name string
fid ushort
valueIfMissing long
return long[]
        public long[] getVectorI64(
			string name,
			ushort fid,
			long[] valueIfMissing)
        {
            long[] result = null;
            if (tryVectorI64 (name, fid, ref result))
                return result;
            else
                return valueIfMissing;
        }

Same methods

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