Posted by: usmanahmad on: August 2, 2006
These questions were asked by Stiff from Great Programmers of the times. I felt these Questions with answers to be included in my blogs. So Here it is.
The participants are all quite notable:
Linus Torvalds (Linux)
Dave Thomas (Pragmatic Programmer)
David Heinemeier Hansson (Ruby/Rails)
Steve Yegge (Google/Amazon)
Peter Norvig (Google Research Director)
Guido Van Rossum [...]
Posted by: usmanahmad on: August 1, 2006
In VB.net; you use brackets to delimit the word.
Public Enum test
[Public]
[Private]
End Enum
SubMain()
Dime As test = test.Private
EndSub
Such things are called Escaped Identifiers, and the equivalent in c# is the @ character.
public enum test {
@public,
@private
}
static void main() {
test e [...]