【发布时间】:2014-02-08 10:04:27
【问题描述】:
我有一个类似follow的方法,
/// <summary>
/// Converts currency
/// </summary>
/// <param name="dtRawInput">Output of the procedure P_FETCH_CONV_CUR</param>
///<param name="FromCurrency">Three letter code of from currency Ex: USD</param>
///<param name="ToCurrency">Three letter code of from currency Ex: USD</param>
///<param name="FromAmount">From currency amount Ex: USD</param>
///<param name="Type">N for normal conversion, F for fare round and T for tax round</param>
/// <exception cref="FormatException">Why it's thrown.</exception>
public static string CurrencyConversion(DataTable dtRawInput, string FromCurrency, string ToCurrency, string FromAmount, string Type)
{
}
当我尝试访问此方法时,它会在工具提示上显示摘要和参数定义。
但问题是
- 将此类转换为 dll 后,它没有显示任何内容。
请帮帮我
【问题讨论】: