示例#1
0
 public NamedWriter this[string name]
 {
     get
     {
         return(NamedWriter.Get(this, name));
     }
 }
示例#2
0
 /// <summary>
 /// Creates or retrieves a session-less log writer which allows continuous writing to the same log file in Log.RootDir.
 /// </summary>
 /// <param name="name">log name</param>
 /// <returns>wirter</returns>
 static public NamedWriter Get(string name)
 {
     return(NamedWriter.Get(name));
 }