public double CurrencyConversion(string from, string to, double amt) { if(from == "Rupees" && to == "Dollar") amt = amt / (55.26); }
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)