コード例 #1
0
        public CodeEntityInterfaceDeclaration(WXMLCodeDomGeneratorSettings settings, CodeEntityTypeDeclaration entityTypeDeclaration, string prefix, string suffix)
            : this(settings)
        {
            NamePrefix = prefix;
            NameSuffix = suffix;

            EntityTypeDeclaration = entityTypeDeclaration;

            m_typeReference.BaseType = FullName;
        }
コード例 #2
0
 public CodeEntityInterfaceDeclaration(WXMLCodeDomGeneratorSettings settings, CodeEntityTypeDeclaration entityTypeDeclaration)
     : this(settings, entityTypeDeclaration, null, null)
 {
 }