Skip to content

Commit d7999bc

Browse files
committed
Change: Rename TryToGuid to TryParseToGuid in StringExtensions
1 parent 3523898 commit d7999bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodeOfChaos.Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static Guid ToGuidOrDefault(this string input) {
3636
return Guid.Empty;
3737
}
3838

39-
public static bool TryToGuid(this string input, out Guid guid)
39+
public static bool TryParseToGuid(this string input, out Guid guid)
4040
=> Guid.TryParse(input, out guid);
4141

4242
/// <summary>

0 commit comments

Comments
 (0)