public static void Main()
Console.WriteLine("Hello World");
public bool Isanagram(string word1,string word2){
if(word1.ToLower()==word2.ToLower()){
if(Reverse(word1)==word2){
static string Reverse(string text)
char[] charArray = text.ToCharArray();
string reverse = String.Empty;
for (int i = charArray.Length - 1; i >= 0; i--)