I'm writing some code related to service bus in X++.
In part of my code I need to read BrokeredMessage.Properties (https://docs.microsoft.com/en-us/dotnet/api/microsoft.servicebus.messaging.brokeredmessage.properties?view=azure-dotnet) which is of type System.Collections.Generic.IDictionary<string,object>
Within X++ I can reference this as System.Collections.Generic.IDictionary`2 however the ` creates a compilation error.
Any idea how I can go about this? I currently am using var, but then I do not get the intellisense.