Struct StringFixups.StringFixup
A fixup pair is a pair of strings.
Namespace: WizardWrx.Core
Assembly: WizardWrx.Core.dll
Syntax
public struct StringFixup
Constructors
| Improve this Doc View SourceStringFixup(String, String)
This constructor permits initializing static read-only arrays of these structures.
Declaration
public StringFixup(string pstrInputValue, string pstroutputValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | pstrInputValue | String to assign to the InputValue property |
System.String | pstroutputValue | String to assign to the OutpuValue property |
Fields
| Improve this Doc View SourceInputValue
Specify the string to be replaced with OutputValue when found in an input string.
Declaration
public string InputValue
Field Value
Type | Description |
---|---|
System.String |
OutputValue
Specify the string to substitute for InputValue when found in an input string.
Declaration
public string OutputValue
Field Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceToString()
Override the ToString method on the base class to render the two structure members' values when the framework invokes the default ToString method, such as when it populates a watch window.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | The return value is a formatted string that displays the name and value of each of the two members of the structure. |