1

我想知道在引用应用程序资源(即resources.resx 文件中的图像)时,哪个是用于XML 文档的标记。哪种方法最正确?

例如,假设我有一个方法可以更新 GUI 中的图片。图片可以是资源(Resources.Car 或 Resources.Bus)中定义的一种,因此在 image 参数中指定。使用以下标签引用资源是否正确?

/// <summary>
/// Sets the image for the picture.
/// </summary>
/// <param name="image">An image representing the transport used:
/// <para><c>Resources.Car<c> to show the car image.</para>
/// <para><c>Resources.Bus<c> to show the bus image.</para>
/// </param>
public void showImage(Image image)
{
   ...
}
4

0 回答 0