Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
StringCompare
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { //Your code goes here string str1="ri", str2 = "si"; var common = str1.Intersect(str2); foreach(var c in common) { Console.Write(c); } } } }
run
|
edit
|
history
|
help
0
kod 1
Least Common Multiple of 2 or more numbers.
Reference Type parameter by Ref vs. Normal
Rijndael
asxsd
string test
Shift Example
Generic Factory pattern
What is the best way to iterate over a Dictionary in C#?
C# program to Determine if Two Words Are Anagrams of Each Other