CSharpUtils.Templates.Runtime.TemplateScope.this C# (CSharp) Method

this() public method

public this ( String Index ) : dynamic
Index String
return dynamic
		public dynamic this[String Index]
		{
			set
			{
				Items[Index] = value;
			}
			get
			{
				if (Items.ContainsKey(Index))
				{
					return Items[Index];
				}

				if (ParentScope != null)
				{
					return ParentScope[Index];
				}
				return null;
			}
		}
	}