You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let myname = System.Reflection.Assembly.GetExecutingAssembly().Location
let xmlname = System.IO.Path.ChangeExtension(myname, "xml")
#if WITHXMLVERIFICATION
let xml = new System.Xml.XmlDocument()
xml.Load(xmlname);
if System.String.Compare(xml.GetElementsByTagName("summary").Item(0).FirstChild.Value, System.Environment.NewLine + " I'm an xml comment!" + System.Environment.NewLine) = 0 then 0 else 1