A
adi
Hi
I'm working on a documentation on my application.
I need to explain the reader that the white spaces will be removed from
a text.
I use string.Trim() method. Note: no arguments passed to the method.
It is not enough to tell this to an untrained person; I need to tell
him the complete list of white spaces, like:
1. space: ' '
2. tab: '\t'
My knowledge of what "whitespace" means stops here: space character and
tab character. What else?
May I dynamically query the framework the complete list of whitespaces?
I'm only able to test a particular character if it's a whitespace or
not (using char.IsWhiteSpace(...))
Thanks.
I'm working on a documentation on my application.
I need to explain the reader that the white spaces will be removed from
a text.
I use string.Trim() method. Note: no arguments passed to the method.
It is not enough to tell this to an untrained person; I need to tell
him the complete list of white spaces, like:
1. space: ' '
2. tab: '\t'
My knowledge of what "whitespace" means stops here: space character and
tab character. What else?
May I dynamically query the framework the complete list of whitespaces?
I'm only able to test a particular character if it's a whitespace or
not (using char.IsWhiteSpace(...))
Thanks.