literal

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
 
H

henk holterman

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-
 

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

Top