我想知道在引用应用程序资源时,哪个是用于XML文档的标记,即resources.resx文件中的图像。哪种方法最正确?
例如,假设我有一个更新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)
{
...
}