KeePass.IO.Data.Entry.TryGet C# (CSharp) Method

TryGet() private method

private TryGet ( string key ) : string
key string
return string
        private string TryGet(string key)
        {
            Field field;
            return _fields.TryGetValue(key, out field)
                ? field.Value : null;
        }