Creates an unkown resource name from the given resource name string.
Only minimal verification is carried out that name is a value resource name string.
public static bool TryParse(string name, out UnparsedResourceName result)
Tries to parse the given resource name into an UnparsedResourceName.
Only minimal verification is carried out that name is a value resource name string.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["The `UnparsedResourceName` class represents a resource name where the structure is unknown, and it implements the `IResourceName` interface as well as `IEquatable\u003cUnparsedResourceName\u003e`."],["You can create an `UnparsedResourceName` object by providing a resource name string to the constructor `UnparsedResourceName(string name)`, which performs minimal verification of the provided name."],["The `Parse(string name)` method allows converting a string into an `UnparsedResourceName`, with the possibility of exceptions for null or invalid input."],["The `TryParse(string name, out UnparsedResourceName result)` method is available to safely parse a resource name string, returning true if it is valid and setting the parsed result, otherwise returning false and setting the parsed result as null."],["`UnparsedResourceName` objects can be compared for equality and inequality using the `Equals()` method, as well as the `==` and `!=` operators."]]],[]]