M
Michael Dybevick
In the Can You Even Do This department:
What do I substitute for the YadaYada in order to get the
Debug.WriteLine statement to write the string "LayerEHIS" ?
using System;
using System.Diagnostics;
namespace Layer
{
class classMain
{
static void Main(string[] args)
{
Debug.WriteLine(LayerEHIS.NAME);
}
}
abstract class Layer
{
internal static string NAME
{
get
{
return System.Reflection.YadaYada;
}
}
}
class LayerEHIS : Layer
{
}
}
What do I substitute for the YadaYada in order to get the
Debug.WriteLine statement to write the string "LayerEHIS" ?
using System;
using System.Diagnostics;
namespace Layer
{
class classMain
{
static void Main(string[] args)
{
Debug.WriteLine(LayerEHIS.NAME);
}
}
abstract class Layer
{
internal static string NAME
{
get
{
return System.Reflection.YadaYada;
}
}
}
class LayerEHIS : Layer
{
}
}