Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

using System; using System.Collections.Generic; using System.Linq; using System.

ID: 3654165 • Letter: U

Question

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Host { class BillLineItem { #region Private Members //object fields private DateTime chargeDt; private BillLineItemType typeCd; private string description; private decimal charge; private int room; #endregion #region Public Properties //public properties go here (aka setters and getters) /// /// Date item was charged to bill /// public DateTime ChargeDt { get; set; } /// /// The category this charge belongs to. /// public BillLineItemType TypeCd { get; set; } /// /// Description of charge /// public string Description { get; set; } /// /// Amount charged for this Bill line item (charge) /// public decimal Charge { get; set; } /// /// The room number this item was charged to. /// public int Room { get; set; } #endregion #region Contructors //contructors and overloads go here #endregion #region Exposed Methods //public methods go here #endregion } }

Explanation / Answer

what is question?