/gist:3fd930b918898e7111e9 Secret
Created
November 11, 2014 00:01
C# Get Set Properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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