I've observed that different developers have different choice of texts to be specified in the help string. Some of the examples,
[
helpstring ("My Interface"),
]
interface MyInterface : IUnknown
{
}
I don't know if this helpstring is useful at all (!?).
[
helpstring ("Interface used with Module A to do some stuff."),
]
interface MyInterface : IUnknown
{
}
Good?
[
helpstring ("Used to implement certain functionality."),
]
interface MyInterface : IUnknown
{
}
Many others.
Is there any guideline you follow when specifying helpstring
of the interface.