Windows Runtime API design principles around read-write properties: Idempotence and self-assignment

Objects in the Windows Runtime can have properties, and those properties could be read-only or read-write. For read-write properties, there are a few general principles. Today we’re going to look at this one: Setting a property to its current value is legal and has no effect.ยน For example: // C# o

Click here to read the article