C# any way of accessing the class name of a static class via code?
- by Nick Allen - Tungle139
Within a static class you cannot use the keyword "this" so I can't call this.GetType().GetFullName if I have
public static class My.Library.Class
{
public static string GetName()
{
}
}
Is there anything I can call from within GetName that will return My.Library.Class