var fDesc=new Array(); fDesc[0] = "Xamarin Profiler can be integrated with your existing Xamarin toolchain to collect information about your Xamarin apps. It helps you find memory leaks and resolve performance bottlenecks. Profiler has three three tabs: Allocations for tracking memory, Time Profiler for tracking performance, and Cycle for tracking memory cycles."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }