using System;
public class Program
{
public static void Main()
// Get me the count of emis occurence in below sentence which is in a circular array
// catch is below sentense is a cirular array; ie.when the sentense reaches the end it continues to start of the word.
string text = "saisfesomafemisgegrwemsomemi";
string findWord = "emis";
Dictionary<string, int> dict = new Dictionary<sting, int>();
int temp = 0;
for(int i=0;i <text.Length-1; i++){
if(text.Substring()
}
Console.WriteLine(text);