SetPropertyString() публичный абстрактный Метод

public abstract SetPropertyString ( string strPropertyName, string strValue ) : bool
strPropertyName string
strValue string
Результат bool
Пример #1
0
        public override bool SetPropertyString(NFGUID self, string strPropertyName, string strValue)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.SetPropertyString(strPropertyName, strValue));
            }

            return(false);
        }