2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 12:43:17 +00:00
This commit is contained in:
2025-08-31 17:02:51 +03:00
parent eee5c7c036
commit 608441c0eb
7 changed files with 212 additions and 130 deletions

View File

@@ -105,9 +105,12 @@ public static class DC // Data Converter
{
return Convert.ChangeType(value, destinationType);
}
}
catch
catch (Exception ex)
{
throw ex;
return null;
}
}
@@ -317,7 +320,7 @@ public static class DC // Data Converter
public static byte[] ToBytes(this string value)
{
return Encoding.UTF8.GetBytes(value);