22 lines
511 B
C#
22 lines
511 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WWTech_KanalSchnittstelle.Exporter.Kandis
|
|
{
|
|
public class KANDIS_Stammdaten
|
|
{
|
|
private string _line;
|
|
internal string ToString(int startSpalte, int endSpalte)
|
|
{
|
|
try
|
|
{
|
|
string text = _line.Substring(startSpalte - 1, endSpalte - startSpalte + 1);
|
|
return text.Trim();
|
|
}
|
|
}
|
|
}
|
|
}
|