Class Note
Represents a note entity used to store textual or descriptive information.
public class Note
- Inheritance
-
Note
- Inherited Members
- Extension Methods
Properties
Comment
public string Comment { get; set; }
Property Value
CommentType
public string? CommentType { get; set; }
Property Value
EnteredTime
public DateTime? EnteredTime { get; set; }
Property Value
Methods
ToString()
Returns a string representation of the note, conditionally including the comment type, comment text, and entered time when their values are present.
public override string ToString()
Returns
- string
A formatted string in the form "note[...]" containing the available note properties, or "note[]" when no properties are set.