Is this singleton implementation correct and thread-safe?
class Class { public static readonly Class Instance; static Class() { Instance
Yes. I would also make the class 'sealed' to avoid any future confusion.
sealed