Hi,
just use the xml comments: <!-- and -->
and internally there is a // comment already available but because of the removing of all whitespaces during xml parsing, it works only to the next ';' character, not the full line like in other languages,
e.g.
|
Quellcode
|
1
2
3
|
trace(1);
//trace(2);
trace(3);
|
shows:
|
Quellcode
|
1
2
|
1
3
|
and
|
Quellcode
|
1
|
trace(1);//trace(2);trace(3);
|
shows also:
|
Quellcode
|
1
2
|
1
3
|
best regards,
Klaus