SQL fehler behoben

This commit is contained in:
2023-04-18 22:06:00 +02:00
parent 455d23e3ad
commit 1555e54e82
7 changed files with 29 additions and 7 deletions

View File

@@ -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();
}
}
}
}

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>