1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-23 22:32:57 +00:00

Nullability, updated version

This commit is contained in:
Jkorf
2020-12-10 15:21:10 +01:00
parent dd06f48fc1
commit 7a54625bb5
12 changed files with 66 additions and 31 deletions
@@ -109,7 +109,7 @@ namespace CryptoExchange.Net.Authentication
{
if (data[key] == null)
return null;
return (string) data[key];
return (string) data[key]!;
}
/// <summary>