C# keyword similar to "this" but for current class type?

c#, class, instance, keyword, this

Solution

I don't think there's a keyword, but maybe as good:

this.GetType();

`GetType` is one of the few methods implemented by `System.Object`.

Problem

Is there a `keyword` to refer to the current class type similar to how `this` refers to the current instance? My intention is to avoid having to type the full class name when refering to static members or Enums but I want to prefex it with something like "this" for readability like I do for instance members. The reason being some of the class names are pretty huge and cause excessive wrapping.

Original source

Related problems