Current filter:
                                You should refresh the page.
                                0
                                  • Hi,

                                    oa template does not include proper using statement, nor fully qualifies type names. This leads to code with errors.

                                    Regards, Przemyslaw

                                    Steps to Reproduce:

                                    1. Open attached solution

                                    2. Expand "oa" template in Class1

                                    Actual Results:

                                    using System;

                                    namespace DevExpress_OaTemplateBug

                                    {

                                        public class Class1 : Class2

                                        {

                                            // Expand oa template here

                                            public override IEnumerable<int> MethodName(Stream stream, Guid guid)

                                            {

                                            }

                                        }

                                    }

                                    Expected Results:

                                    using System;

                                    namespace DevExpress_OaTemplateBug

                                    {

                                        public class Class1 : Class2

                                        {

                                            // Expand oa template here

                                            public override System.Collections.Generic.IEnumerable<int> MethodName(System.IO.Stream stream, Guid guid)

                                            {

                                            }

                                        }

                                    }

                                    or

                                    using System;

                                    using System.Collections.Generic;

                                    using System.IO;

                                    namespace DevExpress_OaTemplateBug

                                    {

                                        public class Class1 : Class2

                                        {

                                            // Expand oa template here

                                            public override IEnumerable<int> MethodName(Stream stream, Guid guid)

                                            {

                                            }

                                        }

                                    }

                                DevExpress_OaTemplateBug.zip
                                You must  log in  or  register  to leave an answer

                                Is your intention to post an answer to your own question?

                                • If so, then proceed.
                                • If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
                                • If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.