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
2009-12-12 10:35:52