Skip to content
Closed
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
9 changes: 9 additions & 0 deletions docs/Adding Optional Parameters in Public API.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,12 @@ The resulting code should 1) have only one overload with optional parameters, wh
most parameters of all the overloads, and 3) all previous overloads should still exist,
properly commented with their release version, and contain only mandatory parameters.

## NOTE ##

After this change, if Public API Analyzer complains about it, you should copy the entry for your change from PublicAPI.Shipped.txt and then put that entry in PublicAPI.Unshipped.txt with *REMOVED* prefix.

PublicAPI.Shipped.txt
Example.O(string o1 = null, string o2 = null) -> void

PublicAPI.Unshipped.txt
*REMOVED*Example.O(string o1 = null, string o2 = null) -> void