I have the string "https://www.AbcXyz.org/schema/Attributes#" I want to convert it to Uri. The line of code is
public static Uri Create(String uri){
Uri u = new Uri(uri);
node.Value = u;
return new Uri(uri);
}
But this code is returning "https://www.abcxyz.org/schema/Attributes#"
How can I get the exact string I passed? Can we have Uppercase letters in URI? because I need to use that URI in a graph database to store as triple data as a database is a case-sensitive