示例#1
0
 /// <summary>
 /// Gets or sets the <see cref="System.String"/> with the specified name.
 /// </summary>
 public string this[string name]
 {
     get
     {
         return(Current.GetValue(name));
     }
     set
     {
         Current.SetValue(name, value);
     }
 }