There's plenty of history behind this question, this goes back to 1997 when Microsoft released the COM Automation specification. Which allowed property setters/getters to have arguments. Visual Basic was an early adopter of the spec, it was driven in no small part by the language to find a replacement for the VBX extension model. Which ran out of gas around that time, it was heavily dependent on the 16-bit coding model.
The C# team took a pretty no-nonsense attitude to the feature, they absolute hate syntax ambiguities. That just doesn't belong in a brand new language. VB.NET didn't have the same luxury, they had to at least support some of the features of the previous generation, VB6 at the time.
Zip forward 10 years, the C# team had to back-pedal a bit by popular demand. Indexed properties are rife in, for example, the Office object model. In C# version 4 they allowed indexed properties exclusively for COM interfaces to soften the pain of writing C# Office code. And more, optional and named arguments got added as well to deal with the Type.Missing misery. And the dynamic keyword to support late binding, another important feature of COM and Visual Basic that was really painful to do in C# without that keyword.
Long story short, COM is beautiful, the elegance if IUnknown is stark. Tony Williams is the genius behind it. Video is here, much worth watching. The subset of COM Automation, IDispatch, is not so beautiful. But it was incredibly successful. Languages ignore it at their peril. C# didn't.
These details might sound arcane from a era long gone, they are not. The next version of the Windows API, WinRT is completely based on IUnknown. Otherwise knows as Metro or Windows 8. IDispatch did not survive, replaced by IInspectable.