Skip to content

Instantly share code, notes, and snippets.

@Microsofttechies
Created November 11, 2014 00:01
C# Get Set Properties
public const string strEngineeringApprovalBreadCrumdText = "Engineering Approval";
public string EngineeringApprovalBreadCrumbText
{
get
{ return strEngineeringApprovalBreadCrumdText; }
}
public string BreadCrumbText
{
set
{
m_BreadCrumbText = value;
}
}
///
/// Sets and gets the BreadCrumb text
///
public string BreadCrumb
{
get
{
return m_BreadCrumbText;
}
}
objCommonMethods.BreadCrumbText = objConstants.EngineeringApprovalBreadCrumbText;
lblBreadCrumbText.Text = objCommonMethods.BreadCrumb;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment