implicit operator string(DottedString)
Converts a DottedString into a string.
Declaration
public static implicit operator string(DottedString dottedString)Parameters
| Type | Name | Description |
|---|---|---|
| DottedString | dottedString | A DottedString. |
Returns
| Type | Description |
|---|---|
| string | The string encapsulated by |
implicit operator DottedString(string)
Converts a string into a DottedString.
Declaration
public static implicit operator DottedString(string str)Parameters
| Type | Name | Description |
|---|---|---|
| string | str | A string. |
Returns
| Type | Description |
|---|---|
| DottedString | A DottedString encapsulating |