I want to compare two strings are equal or not in C#.So i am using equals method of the string object.But even-though the both strings are same,my if condition is failed...
I have also seen the both strings,both are equal and also checked it in http://text-compare.com/ site.It is also reported that the two strings are equal.I dont know what is the issue here...
I am feeling very strange about this...
my code is :
protected string getInnerParaOnly(DocumentFormat.OpenXml.Wordprocessing.Paragraph currPara, string paraText)
{
string currInnerText = "";
bool isChildRun = false;
XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(currPara.OuterXml);
XmlNode newNode = xDoc.DocumentElement;
string temp = currPara.OuterXml.ToString().Trim();
XmlNodeList pNode = xDoc.GetElementsByTagName("w:p");
for (int i = 0; i < pNode.Count; i++)
{
if (i == 0)
{
XmlNodeList childList = pNode[i].ChildNodes;
foreach (XmlNode xNode in childList)
{
if (xNode.Name == "w:r")
{
XmlNodeList childList1 = xNode.ChildNodes;
foreach (XmlNode xNode1 in childList1)
{
if (xNode1.Name == "w:t" && xNode1.Name != "w:pict")
{
currInnerText = currInnerText + xNode1.InnerText;
}
}
}
}
if (currInnerText.Equals(paraText))
{
//do lot of work here...
}
}
}
Please guide me to get out of this issue?
When i was put break point and go through step by step for watching each and every character then, there is a difference in currInnerText last index.It looks like a empty char. But i already used the Trim() function.This is the picture captured during the debug process.
what is the solution for remove the empty char or something else in the end of the currInnerText string...


Equals()is not all lowercase in C#). Please paste your actual code. – BoltClock♦ Sep 27 '12 at 13:14currInnerTextandparaTextareSystem.Stringobjects, as opposed to objects of a derived class, you can try using the==operator to compare them (currInnerText == paraText) and see what happens. This may give some additional insight into the problem. – Gorpik Sep 27 '12 at 13:16