Transpose.String C# (CSharp) Method

String() public static method

public static String ( string input ) : string
input string
return string
    public static string String(string input)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Usage Example

Beispiel #1
0
    public void Single_line()
    {
        var input    = "Single line.";
        var expected =
            "S\n" +
            "i\n" +
            "n\n" +
            "g\n" +
            "l\n" +
            "e\n" +
            " \n" +
            "l\n" +
            "i\n" +
            "n\n" +
            "e\n" +
            ".";

        Assert.Equal(expected, Transpose.String(input));
    }
All Usage Examples Of Transpose::String
Transpose