System.Diagnostics.Debug.Write C# (CSharp) Method

Write() private method

private Write ( object value ) : void
value object
return void
        public static void Write(object value)
        {
            Write(value?.ToString());
        }

Same methods

Debug::Write ( object value, string category ) : void
Debug::Write ( string message ) : void
Debug::Write ( string message, string category ) : void

Usage Example

Esempio n. 1
0
    void OnApplicationQuit()
    {
        TxtState.text = ("[Base De Donnée] :  Fermeture de la connexion");

        Debug.Write("Fermeture Connection Base de Données");

        if (con != null && con.State.ToString() != "Closed")
        {
            con.Close();
        }
    }
All Usage Examples Of System.Diagnostics.Debug::Write