In objectiveC given an NSArray fred containing strings I can say:
NSString *s = [fred ObjectAtIndex:5]; What is the c# equivalent? Rosetta stone says to use the method ValueAt but that returns an IntPtr.
var i = fred.ValueAt(5); But then you are left with how to convert an IntPtr to NSString pointer.