MixinRefactoring.Method.Method C# (CSharp) Method

Method() public method

public Method ( string name, ITypeSymbol type, bool overrideFromObject = false ) : Microsoft.CodeAnalysis
name string
type ITypeSymbol
overrideFromObject bool /// this flag is set if the method was originally declared /// in System.Object and is overriden. When the mixin is included, /// overriden methods from System.Object should still be added to the child
return Microsoft.CodeAnalysis
        public Method(string name, ITypeSymbol type, bool overrideFromObject = false)
        {
            Name = name;
            ReturnType = type;
            IsOverrideFromObject = overrideFromObject;
        }