Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _rules/1562.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ severity: 1
---
They make code less understandable and might cause people to introduce bugs. Instead, return compound objects or tuples.

**Exception:** Calling and declaring members that implement the [TryParse](https://docs.microsoft.com/en-us/dotnet/api/system.int32.tryparse) pattern is allowed. For example:
**Exception:** Calling and declaring members that implement the [TryParse](https://learn.microsoft.com/en-us/dotnet/api/system.int32.tryparse) pattern is allowed. For example:

bool success = int.TryParse(text, out int number);