SQL fehler behoben
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user