Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6737671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:16:35+00:00 2026-05-26T11:16:35+00:00

I have two generic Interface public interface IFunction<TParam, TResult> { TResult Execute(TParam param); }

  • 0

I have two generic Interface

public interface IFunction<TParam, TResult>
{
    TResult Execute(TParam param);
}

public interface IFunctionService<TFunction, TParam, TResult>
    where TFunction : IFunction<TParam, TResult>
{
    IEnumerable<TResult> Execute(TParam param);

    void RegisterFunction(TFunction function);
}

If I want to use IFunctionService I have to write code like this:

IFunctionService<IFunction<string, bool>, string, bool> _Service;

As you can see I have to write TParam and TResult twice. And thats not very nice. Has anybody an idea how to make this nicer? I would like some code like this:

public interface IFunctionService<TFunction>
    where TFunction : IFunction<TParam, TResult>
{
    Type TParam = typeof(TFunction).GetGenericArguments()[0];
    Type TResult = typeof(TFunction).GetGenericArguments()[1];

    IEnumerable<TResult> Execute(TParam param);

    void RegisterFunction(TFunction function);
}

With typeof(TFunction).GetGenericArguments()[0] I would get the correct Type, but thats not possible in an Interface.

Any idea? Do you need to know anything else?

Thanks in advance! Lukas

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T11:16:36+00:00Added an answer on May 26, 2026 at 11:16 am

    Is the TFunction type really necessary in your IFunctionService interface declaration?
    Could you refactor it to something like this?

    public interface IFunctionService<TParam, TResult>{
        IEnumerable<TResult> Execute(TParam param);
    
        void RegisterFunction(IFunction<TParam, TResult> function);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose you have a generic interface and an implementation: public interface MyInterface<T> { void
I have a generic interface public interface Consumer<E> { public void consume(E e); }
I have two interfaces like these: public interface IMyInterface1 { string prop1 { get;
I have IMessageSender interface. using System.ComponentModel.Composition; public interface IMessageSender { void Send(string message); }
I have two classes and an interface like interface IVehicle { void Drive(); }
I have the following two interfaces: public interface ParsedFile<K, V extends FileEntry>{...} And public
I have two interfaces which are generic, IComparable<T> , with method public boolean gt(T
I have a two generic abstract types: Entity and Association . Let's say Entity
I have two threads, a producer thread that places objects into a generic List
I have two models, Room and Image . Image is a generic model that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.