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 696101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:01:42+00:00 2026-05-14T03:01:42+00:00

How can I use an object initializer with an explicit interface implementation in C#?

  • 0

How can I use an object initializer with an explicit interface implementation in C#?

public interface IType
{
  string Property1 { get; set; }
}

public class Type1 : IType
{
  string IType.Property1 { get; set; }
}

...

//doesn't work
var v = new Type1 { IType.Property1 = "myString" };
  • 1 1 Answer
  • 1 View
  • 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-14T03:01:43+00:00Added an answer on May 14, 2026 at 3:01 am

    You can’t. The only way to access an explicit implementation is through a cast to the interface. ((IType)v).Property1 = "blah";

    You could theoretically wrap a proxy around the property, and then use the proxy property in initialization. (The proxy uses the cast to the interface.)

    class Program
    {
        static void Main()
        {
            Foo foo = new Foo() { ProxyBar = "Blah" };
        }
    }
    
    class Foo : IFoo
    {
        string IFoo.Bar { get; set; }
    
        public string ProxyBar
        {
            set { (this as IFoo).Bar = value; }
        }
    }
    
    interface IFoo
    {
        string Bar { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In C++, you can use an initializer list to initialize the class's fields before
Why I can use Object Initializers in Visual Studio 2008 Windows projects, etc targeted
In JavaScript, if I have some function I can use the arguments object to
I can use VS08's MFC/ActiveX template to create a C++ ActiveX object that I
An ordinary object, I can use o.__repr__() to see something like '<__main__.A object at
I have been attempting to have a object that I can use across multiple
Can I make C# start Outlook in the code? In VB6 we use object
When you have an object instance in C#, you can use the this keyword
How can I use automapper to update the properties values of another object without
We can't use java.text.SimpleDateFormat, so is there any way to create date object from

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.