#region _$field$ backing field
#region Documentation
/// _$field$ is a backing variable to $property$ property. (Describe better)
///
///
/// $type$ $field$ = this._$field$;
///
///
/// This field is marked with DebuggerBrowsableState.Never attribute.
/// .
/// $property$
#endregion Documentation
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private $type$ _$field$ = $defaultValue$;
#endregion _$field$ backing field
#region $property$ Fronting property
#region Documentation
/// $property$ of type $type$ (Describe better).
/// Returns $type$.
///
///
/// $type$ _$property$ = this.$property$;
///
/// This property is marked with XmlIgnore and DebuggerStepThrough attributes.
/// .
/// _$field$.
#endregion Documentation
[XmlIgnore]
public $type$ $property$
{
[DebuggerStepThrough] get { return this._$field$;}
[DebuggerStepThrough] set { this._$field$ = value;}
}
#endregion $property$ Fronting property
$end$
|