views:

319

answers:

1

I want to multiply strings using functions.with user giving the string and the power to that string.and display it.

+1  A: 
public static double MultiplyString(string str, string power) { return Math.Pow(Double.Parse(str), Double.Parse(power)); }
ytg