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 `IResourceName` and `IEquatable\u003cUnparsedResourceName\u003e`."],["This class can be constructed from a string via the `UnparsedResourceName(string name)` constructor, which performs minimal validation on the provided name."],["The `Parse(string name)` and `TryParse(string name, out UnparsedResourceName result)` methods are available for creating an `UnparsedResourceName` instance from a resource name string, but `Parse` will throw exceptions, while `TryParse` will return a bool."],["Key functionalities include checking if the instance has a known pattern via `IsKnownPattern`, and comparing instances for equality using `Equals` and the overloaded `==` and `!=` operators."],["The class provides overrides for core methods such as `Equals(object obj)`, `GetHashCode()`, and `ToString()`, enhancing its utility within .NET applications."]]],[]]