Castle.DynamicProxy.Builder.CodeBuilder.EasyProperty.Generate C# (CSharp) Method

Generate() public method

public Generate ( ) : void
return void
		public void Generate()
		{
			if (_setMethod != null)
			{
				_setMethod.Generate();
				_builder.SetSetMethod(_setMethod.MethodBuilder);
			}

			if (_getMethod != null)
			{
				_getMethod.Generate();
				_builder.SetGetMethod(_getMethod.MethodBuilder);
			}
		}