public static string ReturnDiff(string firstString, string scndString)
{
StringBuilder newStb = new StringBuilder();
if (firstString != null && scndString != null)
{
for(int i=0;i<firstString.Length;i++)
{
if (!scndString.Contains(firstString[i]))
newStb.Append(firstString[i]);
}
}
return newStb.ToString();
}
ASKER
C# is an object-oriented programming language created in conjunction with Microsoft’s .NET framework. Compilation is usually done into the Microsoft Intermediate Language (MSIL), which is then JIT-compiled to native code (and cached) during execution in the Common Language Runtime (CLR).
TRUSTED BY