Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,16 +169,6 @@ Therefore, we recommend you keep this nuget package as up to date as possible us

For more information on metadata usage, please refer to the [main repository faq](https://github.com/google/libphonenumber/blob/master/FAQ.md#metadata)

## ToDo

* update / add / port new unit tests and logging from java source

## How to unfold automatic generated files

* Install Jetbrains - Resharper for Visual Studio
* File by file, right click and "Cleanup code"
* Check the unfolded file

## Running tests locally

```bash
Expand Down
12 changes: 6 additions & 6 deletions csharp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ Known Issues
and embedded in the assembly. No zip files or text files are needed to run the library or its
tests.


Todo
----

- Restore the Java logging calls?
- Find a suitable replace for Java CharSequence in phone numbers parsing API.
- Java's public API accepts `CharSequence` in several entry points (e.g.
`PhoneNumberMatcher`'s constructor, `isViablePhoneNumber`), letting callers pass a `String`,
`StringBuilder`, or `StringBuffer` without copying. The C# port takes `string` in the
equivalent spots (`PhoneNumberMatcher(PhoneNumberUtil, string, ...)`,
`PhoneNumberUtil.IsViablePhoneNumber(string)`) instead of a comparable abstraction, so a
caller building up a number in a `StringBuilder` has to call `.ToString()` first.