Uid

Prj.Uid field

The unique Id of a project.

public static readonly Key<string, PrjKey> Uid;

Examples

Shows how to read/write Prj.Uid property.

var project = new Project();

project.Set(Prj.Uid, "1234");

Console.WriteLine("Uid: " + project.Get(Prj.Uid));

See Also