Skip to content

Instantly share code, notes, and snippets.

@mako34
Created February 18, 2017 00:09
Show Gist options
  • Select an option

  • Save mako34/851bdfe0b22fb4c110bf4f8f69744286 to your computer and use it in GitHub Desktop.

Select an option

Save mako34/851bdfe0b22fb4c110bf4f8f69744286 to your computer and use it in GitHub Desktop.
log on xamarin debug
using Xamarin.Forms;
using System.Diagnostics; //the library!
namespace CsharpMob
{
public partial class CsharpMobPage : ContentPage
{
public CsharpMobPage()
{
Debug.WriteLine("Hello, world!"); //on debug mode, no console :p
InitializeComponent();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment