Forum: C# Feb 8th, 2007 |
| Replies: 3 Views: 1,764 So a namespace is there to organize the classes which holds the objects.
Let's go with C#
If I say :
using MagicBeam;
public class MagicFu |
Forum: C# Feb 6th, 2007 |
| Replies: 3 Views: 1,764 I'm getting these down to the tee as I'm into C# and Java right now as they are very similar. My question is what are the key and not so obvious differences between a class and a namespace? The... |
Forum: C# Jan 22nd, 2007 |
| Replies: 4 Views: 1,563 Cool. Yea that much I know. I should have been more specific. I want the details behind that operation. |
Forum: C# Jan 22nd, 2007 |
| Replies: 4 Views: 1,563 csc /out : DemoLogo2.exe DemoLogo.cs /out: LogoNamespace.netmodule LogoNamespace.cs
Its a command in a book but it gives no reference. I'd like to know exactly whats going on here if anyone... |
Forum: C# Jan 14th, 2007 |
| Replies: 3 Views: 20,767 switch(time)
{
case 1: System.Console.WriteLine(" Enter the century. ie 20 or 19.");
C = System.Console.ReadLine();
Convert.ToInt32(C);
goto case 2;
case 2:... |