Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duplicates of methods in class which implements interface (C#, Unity) #9397

Open
gerchicovy opened this issue Jun 14, 2022 · 0 comments
Open
Labels

Comments

@gerchicovy
Copy link

gerchicovy commented Jun 14, 2022

doxygen -x Doxyfile:

# Difference with default Doxyfile 1.9.4 (5d15657a55555e6181a7830a5c723af75e7577e2)
PROJECT_NAME           = "My Project"
OUTPUT_DIRECTORY       = unity-projects/test-mobileads
OPTIMIZE_OUTPUT_JAVA   = YES
EXTRACT_ALL            = YES
EXTRACT_STATIC         = YES
INPUT                  = ../input
RECURSIVE              = YES
SOURCE_BROWSER         = YES
GENERATE_DOCBOOK       = YES

Example of class and interface:

using System;
using System.Reflection;
using UnityEngine;

namespace YandexMobileAds.Common
{
    public class SomeClass : SomeInterface
    {
        public void Show()
        {
        }
    }
}
using System;
using YandexMobileAds.Base;

namespace YandexMobileAds.Common
{
    public interface SomeInterface
    {
        /// <summary>
        /// Shows banner view on screen.
        /// </summary>
        void Show();
    }
}

Result:
Screenshot 2022-06-14 at 12 50 07

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants