C# Class Fan.Sys.SysProps

SysProps serves the role of Java's System.properties.
Show file Open project: xored/f4 Class Usage Examples

Public Methods

Method Description
getProperty ( string name ) : string

Return the system property for this name, or null if no matching property value can be found.

putProperty ( string name, string val ) : void

Set the system property for this name.

Method Details

getProperty() public static method

Return the system property for this name, or null if no matching property value can be found.
public static getProperty ( string name ) : string
name string
return string

putProperty() public static method

Set the system property for this name.
public static putProperty ( string name, string val ) : void
name string
val string
return void