literal

  • Thread starter Thread starter Tony Johansson
  • Start date Start date
T

Tony Johansson

Hello!

If I have in my program
using System;

Is then System a literal or an identifier.

I would say a typical literal. Do you agree with me ?

//Tony
 
Tony said:
If I have in my program
using System;

Is then System a literal or an identifier.

I would say a typical literal. Do you agree with me ?

It is an identifier (identifying a namespace). It must follow the rules
for identifiers. Some examples of literals: 1.2, 'x', "hello" and true.

-HH-
 
Back
Top