public override object[] GetCustomAttributes(bool inherit)
        {
            Helpers.TraceCall();
            Debug.Assert(inherit == false, "Is it expected that 'inherit' is true?");
            var a = new TypeProviderXmlDocAttribute("This is a synthetic type created by me?");

            return(new[] { a });
        }
 public override object[] GetCustomAttributes(bool inherit)
 {
     Helpers.TraceCall();
     Debug.Assert(inherit == false, "Is it expected that 'inherit' is true?");
     var a = new TypeProviderXmlDocAttribute("This is a synthetic type created by me?");
     return new[] { a };
 }