Does Ecma-334 have an incorrect description for next line (C# ECMA Standard)? -


in ecma-334 (c# language specification 4th edition), annex a. grammar, section a.1.1 line terminators:

new-line::   carriage return character (u+000d)   line feed character (u+000a)   carriage return character (u+000d) followed line feed character (u+000a)   next line character (u+2085)   line separator character (u+2028)   paragraph separator character (u+2029) 

but u+2085 not next line character; subscript five.

does ecma-334 have incorrect description next line?

http://www.ecma-international.org/publications/standards/ecma-334.htm

http://www.fileformat.info/info/unicode/char/2085/index.htm

edit: (u+0085) next line character.

yes, appears error in standard.

the microsoft c# language specification (the version shipped vs2010) has correct item:

next line character (u+0085) 

Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -