How to identify static class using reflection
February 26, 2015 by Anuraj
.Net .Net 3.0 / 3.5 .Net 4.0 ASP.Net Visual Studio
Today someone asked me, how to find static class from list of types. I was against the implementation he was doing, but still I couldn’t find how to find static class. Later I did some research and I found like you need to look for ** IsAbstract ** and IsSealed properties of the type.
Here is source code, which identify the static class from the list of available types in the assembly.
class Program
{
static void Main(string[] args)
{
var types = Assembly.GetExecutingAssembly().GetTypes();
types.Where(x => x.IsAbstract && x.IsSealed).ToList()
.ForEach(Console.WriteLine);
}
}
static class StaticClass { }
sealed class SealedClass { }
interface Interface { }
class NormalClass { }
abstract class AbstractClass { }
If you run the above code, it will print the StaticClass name.
Happy Programming :)
Copyright © 2025 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub