Wombat.MamaMsg.getVectorBool C# (CSharp) Метод

getVectorBool() публичный Метод

Get a vector of booleans.
public getVectorBool ( string name, ushort fid, bool valueIfMissing ) : bool[]
name string
fid ushort
valueIfMissing bool
Результат bool[]
        public bool[] getVectorBool(
			string name,
			ushort fid,
			bool[] valueIfMissing)
        {
            bool[] result = null;
            if (tryVectorBool (name, fid, ref result))
                return result;
            else
                return valueIfMissing;
        }

Same methods

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