Ejemplo n.º 1
0
 public LasResult()
 {
     Version   = new LasSection();
     Well      = new LasSection();
     Curve     = new LasSection();
     Parameter = new LasSection();
     Other     = new LasSection();
     DataRows  = new LasAsciiData();
 }
Ejemplo n.º 2
0
 private void LineAppender(LasSection section, StringBuilder stringBuilder)
 {
     section.Items.ForEach(x => stringBuilder.AppendLine(x.Mnemonic + " " + x.Unit + " " +
                                                         x.Data + " " + x.Description));
 }