Create() 공개 정적인 메소드

public static Create ( CodeTypeDeclaration decl, CodeTypeDeclItems declItems ) : TypePropertyBuilder
decl System.CodeDom.CodeTypeDeclaration
declItems CodeTypeDeclItems
리턴 TypePropertyBuilder
예제 #1
0
 internal override void StartGrouping(GroupingInfo groupingInfo)
 {
     this.InitializeTables();
     this.propertyBuilder = TypePropertyBuilder.Create(groupingInfo, this.decl, this.declItemsInfo);
     this.propertyBuilder.StartCodeGen();
     this.propertyBuilderStack.Push(this.propertyBuilder);
 }
예제 #2
0
 internal override void CreateAttributeProperty(ClrBasePropertyInfo propertyInfo, List <ClrAnnotation> annotations)
 {
     this.propertyBuilder = TypePropertyBuilder.Create(this.decl, this.declItemsInfo);
     this.propertyBuilder.GenerateCode(propertyInfo, annotations);
 }