I can't seem to find a way to insert the method return type in a Resharper 5 macro. Can this be done?
For example, I have the following template:
Contract.Ensure(Contract.Result<$RESULTTYPE$>() != null);
I would like $REUSLTTYPE$ to be automatically filled with the data type of the current method, but I can't find a macro that would do that.
Thanks.