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

PutAttribute() 개인적인 메소드

private PutAttribute ( string key, string value ) : string
key string
value string
리턴 string
        public string PutAttribute(string key, string value)
        {
            if (Attributes_Renamed == null)
            {
                Attributes_Renamed = new Dictionary<string, string>();
            }
            return Attributes_Renamed[key] = value;
        }