PropertyValue
http://www.w3.org/1999/02/22-rdf-syntax-ns#type
http://www.w3.org/ns/prov#value
  • If you canonicalize each word so that its letters are uppercase and in alphabetical order, then checking whether one word is an anagram of another is as simple as comparing their canonical forms: private static string Canonicalize(string s){ char[] chars = s.ToUpperInvariant().ToCharArray(); Array.Sort(chars); return new string(chars);} I had a performance goal for this project; I wanted to be a
http://www.w3.org/ns/prov#wasQuotedFrom
  • msdn.com