ResXFileRefTryParse Method
Converts the string representation of a file reference to a
ResXFileRef instance. A return value indicates whether the conversion succeeded.
Namespace: KGySoft.ResourcesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static bool TryParse(
string? s,
out ResXFileRef result
)
Public Shared Function TryParse (
s As String,
<OutAttribute> ByRef result As ResXFileRef
) As Boolean
public:
static bool TryParse(
String^ s,
[OutAttribute] ResXFileRef^% result
)
static member TryParse :
s : string *
result : ResXFileRef byref -> bool
- s String
- The string representation of the file reference to convert.
- result ResXFileRef
- When this method returns, contains a ResXFileRef instance that represents the file reference specified in s,
if the conversion succeeded, or if the conversion failed.
Boolean if
s was converted successfully; otherwise,
.