In .NET if you compile something it is possible to decompile it and see the source code using programs such as Reflector.
I know the basics of Objective C and will rather try to use Objective C than MonoTouch. The reason why I use MonoTouch is because there are some things that I do not know how to do with Objective C.
For example:
UdpClient client = new UdpClient("192.168.0.120",5050);
client.Send(new byte[]{0,1,2,3,4},5);
I attempted all day to do those two lines of code with Objective C and I was not able to. Anyways, I was wondering if it would be possible to turn MonoTouch into Objective C just like Reflector does, for the purposing of learning.