Code

Rsc.Code field

The code or other information about a resource.

public static readonly Key<string, RscKey> Code;

Examples

Shows how to read/write Rsc.Code property.

var project = new Project();

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

resource.Set(Rsc.Code, "555292");

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

See Also