C# Class SharpMod.Helper.HelperExtensions

These are some extensions which let the code look nice. These functions are often found in other scripting programming languages like ruby
Afficher le fichier Open project: txdv/sharpmod

Méthodes publiques

Méthode Description
Append ( this stringBuilder, string cmd ) : StringBuilder
Contains ( this text, char c ) : bool
Escape ( this c ) : string
First ( this array ) : string
GetInnerText ( this doc, string tag ) : string
GetXmlElement ( this xmldoc, string name ) : XmlElement
IsMessage ( this type ) : bool
IsStruct ( this type ) : bool
Join ( this stringArray, char c ) : string
Join ( this stringArray, int startIndex, char c ) : string
Join ( this stringArray, int startIndex, string delimeter ) : string
Join ( this stringArray, string delimeter ) : string
Last ( this array ) : string

Returns the last element in a string array

Shift ( this text, char c ) : string
Shift ( this arr ) : string[]
Split ( this text, char c ) : string[]
ToFloat ( this timespan ) : float
ToTimeSpan ( this time ) : System.TimeSpan

Method Details

Append() public static méthode

public static Append ( this stringBuilder, string cmd ) : StringBuilder
stringBuilder this
cmd string
Résultat StringBuilder

Contains() public static méthode

public static Contains ( this text, char c ) : bool
text this
c char
Résultat bool

Escape() public static méthode

public static Escape ( this c ) : string
c this
Résultat string

First() public static méthode

public static First ( this array ) : string
array this
Résultat string

GetInnerText() public static méthode

public static GetInnerText ( this doc, string tag ) : string
doc this
tag string
Résultat string

GetXmlElement() public static méthode

public static GetXmlElement ( this xmldoc, string name ) : XmlElement
xmldoc this
name string
Résultat System.Xml.XmlElement

IsMessage() public static méthode

public static IsMessage ( this type ) : bool
type this
Résultat bool

IsStruct() public static méthode

public static IsStruct ( this type ) : bool
type this
Résultat bool

Join() public static méthode

public static Join ( this stringArray, char c ) : string
stringArray this
c char
Résultat string

Join() public static méthode

public static Join ( this stringArray, int startIndex, char c ) : string
stringArray this
startIndex int
c char
Résultat string

Join() public static méthode

public static Join ( this stringArray, int startIndex, string delimeter ) : string
stringArray this
startIndex int
delimeter string
Résultat string

Join() public static méthode

public static Join ( this stringArray, string delimeter ) : string
stringArray this
delimeter string
Résultat string

Last() public static méthode

Returns the last element in a string array
public static Last ( this array ) : string
array this /// A string array ///
Résultat string

Shift() public static méthode

public static Shift ( this text, char c ) : string
text this
c char
Résultat string

Shift() public static méthode

public static Shift ( this arr ) : string[]
arr this
Résultat string[]

Split() public static méthode

public static Split ( this text, char c ) : string[]
text this
c char
Résultat string[]

ToFloat() public static méthode

public static ToFloat ( this timespan ) : float
timespan this
Résultat float

ToTimeSpan() public static méthode

public static ToTimeSpan ( this time ) : System.TimeSpan
time this
Résultat System.TimeSpan