SharpMod.BufferInfo.Get C# (CSharp) Method

Get() public method

Gets a value for a key from the infobuffer
public Get ( string key ) : string
key string /// The key ///
return string
        public string Get(string key)
        {
            return UnixMarshal.PtrToString(MetaModEngine.engineFunctions.InfoKeyValue(
                    MetaModEngine.engineFunctions.GetInfoKeyBuffer(Pointer),
                    key));
        }