O
One Handed Man \( OHM - Terry Burns \)
A long time ago when I was working with LotusScript, we used to be able to
use the | characters to simpify the constrcution of a string which had for
example quotes inside it from the First | to the Last |, the characters were
taken literally.
IE
myString = | "Hello World" |
print MyString
Would generate
"Hello World"
This made things easy and readable, compared to
myString = """Hello World"""
.. . .
I have not been able to find an equivelent in .NET, does anyone know if one
exists ?
--
OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me
Time flies when you don't know what you're doing
use the | characters to simpify the constrcution of a string which had for
example quotes inside it from the First | to the Last |, the characters were
taken literally.
IE
myString = | "Hello World" |
print MyString
Would generate
"Hello World"
This made things easy and readable, compared to
myString = """Hello World"""
.. . .
I have not been able to find an equivelent in .NET, does anyone know if one
exists ?
--
OHM ( Terry Burns )
. . . One-Handed-Man . . .
If U Need My Email ,Ask Me
Time flies when you don't know what you're doing