System.Web.UI.TemplateControlParser.GetCompiledInstance C# (CSharp) 메소드

GetCompiledInstance() 개인적인 메소드

private GetCompiledInstance ( ) : object
리턴 object
		internal object GetCompiledInstance ()
		{
			Type type = CompileIntoType ();
			if (type == null)
				return null;

			object ctrl = Activator.CreateInstance (type);
			if (ctrl == null)
				return null;

			HandleOptions (ctrl);
			return ctrl;
		}