C# Class rencodesharp.Util

Datei anzeigen Open project: voltagex/junkcode

Public Methods

Method Description
Join ( List r ) : string

Join the List of objects by converting each item to a string.

StringBytes ( string s ) : byte[]

Converts string to byte array.

StringPad ( string x, int n ) : string

Pads the front of a string with NUL bytes.

Method Details

Join() public static method

Join the List of objects by converting each item to a string.
public static Join ( List r ) : string
r List
return string

StringBytes() public static method

Converts string to byte array.
public static StringBytes ( string s ) : byte[]
s string
return byte[]

StringPad() public static method

Pads the front of a string with NUL bytes.
public static StringPad ( string x, int n ) : string
x string
n int
return string