Utils.Write C# (CSharp) Méthode

Write() public static méthode

public static Write ( string s ) : void
s string
Résultat void
    public static void Write(string s) {
        Interpreter.Console.Write(s);
    }
    

Usage Example

Exemple #1
0
    /// <summary>
    /// Writes the value in the packet
    /// </summary>
    /// <param name="value">value to write</param>
    public void Write(string value)
    {
        int n = Utils.Write(Data, CurrentSeek, value);

        CurrentSeek   += n;
        CurrentLength += n;
    }
All Usage Examples Of Utils::Write