How to get the characters which are present in string1 but not in string2 using Linq in C#

1 Answer

0 votes
using System;
using System.Linq;
 
class Program
{
    static void Main() {
        string s1 = "c-sharp", s2 = "java c";
 
        var result = s1.Except(s2);
         
        Console.WriteLine(string.Join("", result));
    }
}
    
    
    
    
/*
run:
       
-shrp
     
*/

 



answered Jul 7, 2023 by avibootz
...