Use Stream.Dispose() for NetStandard 1.3

This commit is contained in:
Serge Camille
2020-09-12 11:19:08 +02:00
parent 106e9912ab
commit 80ad95372b

View File

@@ -33,7 +33,7 @@ namespace S7.Net
}
catch(Exception)
{
stream.Close();
stream.Dispose();
}
}