public static bool HasIndexChannel(this LasSection lasSection)
 {
     return(lasSection.FirstMnemonic().IsMnemonic(MNEM_DEPT, MNEM_DEPTH, MNEM_TIME, MNEM_INDEX));
 }
Exemple #2
0
 public void LasSectionHelpers_FirstMnemonic_Pass()
 {
     Assert.IsNull(nullSection.FirstMnemonic());
     Assert.IsNull(emptySection.FirstMnemonic());
     Assert.AreSame(mnemonicLine, mnemonicSection.FirstMnemonic());
 }