Added WebRequest node

This commit is contained in:
John Andrews
2022-03-12 19:45:29 +13:00
parent 3375cdec40
commit b0b0067f6c
7 changed files with 216 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace BasicNodes
{
internal static class ExtensionMethods
{
public static string? EmptyAsNull(this string str)
{
return str == string.Empty ? null : str;
}
}
}