Created
February 18, 2017 00:09
-
-
Save mako34/851bdfe0b22fb4c110bf4f8f69744286 to your computer and use it in GitHub Desktop.
log on xamarin debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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