Prebuild.Core.Parse.IfContext.IfContext C# (CSharp) Method

IfContext() public method

Initializes a new instance of the IfContext class.
public IfContext ( bool active, bool keep, IfState state ) : System
active bool if set to true [active].
keep bool if set to true [keep].
state IfState The state.
return System
		public IfContext(bool active, bool keep, IfState state)
		{
			m_Active = active;
			m_Keep = keep;
			m_EverKept = keep;
			m_State = state;
		}
IfContext