What is the difference between displayClassA and DisplayClassb?
When creating classes should i put them outside of the Stuff Class or insisde?
What's the difference?
using System;
using System.Collections.Generic;
namespace Empty
{
public class DisplayClassA
{
public DisplayClassA(){Console.WriteLine("This Class is outside of STUFF");}
}
public class Stuff
{
public class DisplayClassB
{
public DisplayClassB(){Console.WriteLine("This Class is inside of STUFF");}
}
static void Main(string[] args)
{
DisplayClassA a =new DisplayClassA();
DisplayClassB b =new DisplayClassB();
}
}
}