Subject

Prj.Subject field

The subject of a project.

public static readonly Key<string, PrjKey> Subject;

Examples

Shows how to read/write Prj.Subject property.

var project = new Project();

project.Set(Prj.Subject, "Subject");

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

See Also