Besides executing an executable GC, you can also find out if the NewRefCount (NRC) extensions are included (or not) in the GC.
:
bool NSObject.IsNewRefcountEnabled ();
. Touch.Unit :
Writer.WriteLine ("[GC:\t{0}{1}]", GC.MaxGeneration == 0 ? "Boehm": "sgen",
NSObject.IsNewRefcountEnabled () ? "+NewRefCount" : String.Empty);
GC.