C# name

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I recently saw the name of this programming language depicted like:
HTML: C<sup>#</sup>
Is this -somehow- official?
 
Marco,

What you are looking at is a representation of the name. The <sup> tag
means that it is supposed to be superscript, elevated. It's still C#, just
presented in the way you would see in musical notation (when viewed in a
browser).

Hope this helps.
 
Is that additional format for its name also official?

Nicholas Paldino said:
Marco,

What you are looking at is a representation of the name. The <sup> tag
means that it is supposed to be superscript, elevated. It's still C#, just
presented in the way you would see in musical notation (when viewed in a
browser).

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Marco Dorantes said:
I recently saw the name of this programming language depicted like:
HTML: C<sup>#</sup>
Is this -somehow- official?
 
Marco,

No, the format has nothing to do with the name. It's the same thing as
representing the number 11. In decimal, it is "11", in hex, it is "b", in
octal, it is "13", etc, etc. The value is still 11.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Marco Dorantes said:
Is that additional format for its name also official?

Nicholas Paldino said:
Marco,

What you are looking at is a representation of the name. The <sup>
tag
means that it is supposed to be superscript, elevated. It's still C#,
just
presented in the way you would see in musical notation (when viewed in a
browser).

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

message
I recently saw the name of this programming language depicted like:
HTML: C<sup>#</sup>
Is this -somehow- official?
 
Actually, checking the language specification document, the # sign has
superscript format indeed.
As a programmer that likes precise things, it is important to know it. From
now on, in every possible occasion I will render the name correctly.


Nicholas Paldino said:
Marco,

No, the format has nothing to do with the name. It's the same thing as
representing the number 11. In decimal, it is "11", in hex, it is "b", in
octal, it is "13", etc, etc. The value is still 11.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Marco Dorantes said:
Is that additional format for its name also official?

Nicholas Paldino said:
Marco,

What you are looking at is a representation of the name. The <sup>
tag
means that it is supposed to be superscript, elevated. It's still C#,
just
presented in the way you would see in musical notation (when viewed in a
browser).

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

message
I recently saw the name of this programming language depicted like:
HTML: C<sup>#</sup>
Is this -somehow- official?
 
Marco Dorantes said:
Actually, checking the language specification document, the # sign has
superscript format indeed.

That's only the titlepage. None of the several hundred appearences of the
name in the spec uses any superscript. Wouldn't say there is anything
official about it.
 
Yes, only the titlepage.
Nevertheless, I like it that way; besides, the name was borrowed from the
name of the musical note which is written with superscript format (as far as
I know).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top