QueryPropertyString() public abstract méthode

public abstract QueryPropertyString ( string strPropertyName ) : string
strPropertyName string
Résultat string
Exemple #1
0
        public override string QueryPropertyString(NFGUID self, string strPropertyName)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.QueryPropertyString(strPropertyName));
            }

            return("");
        }