Beispiel #1
0
 public void AppendPath(StringBuilder sb)
 {
     if (parentPath != null)
     {
         parentPath.AppendPath(sb);
         sb.Append(IncludeSetting.PathDelimiter);
     }
     sb.Append(path);
 }