[Solved] Unary value type [closed]


I think what you are asking is not possible.

But you can use constants.

const string s = "I'm a constant and I'll not change";

But the word variable itself speaks itself. It varies

But for your sake how about this:

struct Uoolean { }

A empty struct? No matter what object you create from it, nothing is gonna change.

6

solved Unary value type [closed]