ToString

Resource.ToString method

Returns short string representation of the instance of the Resource class. The exact details of the representation are unspecified and subject to change.

public override string ToString()

Return Value

short string which represents resource object.

Examples

Shows how to use resource ToString method.

var project = new Project();
var resource = project.Resources.Add("Resource");

// print resource common information
Console.WriteLine(resource.ToString());

See Also