Skip to content

Commit

Permalink
AddressEquals added
Browse files Browse the repository at this point in the history
  • Loading branch information
frostiq committed May 28, 2019
1 parent e398aca commit 0a55d1c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>0.0.2</Version>
<Version>0.0.3</Version>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace Bloqboard.Ethereum.Common
{
public static class StringExtensions
{
public static bool AddressEquals(this string a, string b)
{
return string.Equals(a, b, StringComparison.OrdinalIgnoreCase);
}
}
}

0 comments on commit 0a55d1c

Please sign in to comment.