Guid

Rsc.Guid field

Contains the generated unique identification code for the resource.

public static readonly Key<string, RscKey> Guid;

Examples

Shows how to read/write Rsc.Guid property.

var project = new Project();

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

resource.Set(Rsc.Guid, "1385689c-2dd1-4114-935b-054beb6fbbbe");

Console.WriteLine("Guid: " + resource.Get(Rsc.Guid));

See Also