The Assembly-Attributes paragraph allows you to specify assembly-wide attributes. 
                  	  
               
            
 
            	 
             
               		
               Note: This syntax is supported for .NET COBOL only. 
                  		
               
 
               	 
              
            	 
            
               assembly-attributes-paragraph
 
               		 
               		 
 
               	 
              
            	 
            
               Example
 
               		 
               		Class-id myClass.
ASSEMBLY-ATTRIBUTES.  *> Define an attribute on an assembly
 attribute CLSCompliant(true).
Method-id myMethod.
...
end method.
end class.