System.Console.Write C# (CSharp) Méthode

Write() public static méthode

public static Write ( bool value ) : void
value bool
Résultat void
        public static void Write(bool value) { }
        public static void Write(char value) { }

Same methods

Console::Write ( char buffer, int index, int count ) : void
Console::Write ( decimal value ) : void
Console::Write ( double value ) : void
Console::Write ( float value ) : void
Console::Write ( int value ) : void
Console::Write ( long value ) : void
Console::Write ( object value ) : void
Console::Write ( string value ) : void
Console::Write ( string format, object arg0 ) : void
Console::Write ( string format, object arg0, object arg1 ) : void
Console::Write ( string format, object arg0, object arg1, object arg2 ) : void
Console::Write ( uint value ) : void
Console::Write ( ulong value ) : void

Usage Example

Exemple #1
0
using S = System.Console; class A { static void Main()
                                    {
                                        for (int d = 1, c;; d = c > 83?1:++d % 51 - c % 2 * 51)
                                        {
                                            c = S.Read(); S.Write("#\n "[d < 1?0:c % 3]);
                                        }
                                    }
All Usage Examples Of System.Console::Write