ArcGISRuntimeXamarin.Logger.WriteLine C# (CSharp) Method

WriteLine() public static method

public static WriteLine ( string text ) : void
text string
return void
        public static void WriteLine(string text)
        {
#if WINDOWS_UWP
            System.Diagnostics.Debug.WriteLine(text);
#else
            Console.WriteLine(text);
#endif
        }
    }