Lucene.Net.Index.SegmentInfo.GetAttribute C# (CSharp) 메소드

GetAttribute() 개인적인 메소드

private GetAttribute ( string key ) : string
key string
리턴 string
        public string GetAttribute(string key)
        {
            if (Attributes_Renamed == null)
            {
                return null;
            }
            else
            {
                return Attributes_Renamed[key];
            }
        }