Wombat.MamaMsg.getVectorPrice C# (CSharp) Method

getVectorPrice() public method

Get a vector of prices.
public getVectorPrice ( string name, ushort fid, Wombat.MamaPrice valueIfMissing ) : Wombat.MamaPrice[]
name string
fid ushort
valueIfMissing Wombat.MamaPrice
return Wombat.MamaPrice[]
        public MamaPrice[] getVectorPrice(
			string name,
			ushort fid,
			MamaPrice[] valueIfMissing)
        {
            MamaPrice[] result = null;
            if (tryVectorPrice (name, fid, ref result))
                return result;
            else
                return valueIfMissing;
        }

Same methods

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