I am trying to implement IConvertible for custom transform. I am using .NET portable and it seems that it is not available there. But the MSDN documentation says:
Portable Class Library
Supported in: Portable Class Library
I am a bit worried by this which also appears :
This API is not CLS-compliant.
Is this the reason why it might not be getting resolved?
As per the documentation, it should be a part of System
namespace.
I am trying to implement the interface in a structure.
Something on the lines of :
public struct ABC: Blah<Demo>, IConvertible
{}
I have a feeling I am am missing out on something really small.
More information: I am targeting .NET Framework 4.5 and Windows 8.