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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:31:22+00:00 2026-06-10T06:31:22+00:00

I’m trying to create a substitute for kind of property, that accepts multiple types

  • 0

I’m trying to create a substitute for kind of property, that accepts multiple types as inputs/outputs.

Here is some pseudo code of one ugly solution:

http://pastebin.com/gbh4SrZX

Basically i have piece of data and i need to be able assign multiple types to it, and react accordingly. I have pieces of data that i operate with, and i need efficient way to manage loading them from file names when needed, while maintaining the same code, if I’m manipulating with data, that’s already loaded.

This would be awesome:

SomeDataClass data1 = new SomeDataClass();
SomeDataClass data2 = new SomeDataClass();

data1.Data = "somefile.dat";
data2.Data = data1.Data;

while SomeDataClass.Data is not type of string.

  • 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-06-10T06:31:24+00:00Added an answer on June 10, 2026 at 6:31 am

    You can do much of that with an implicit conversion operator, i.e.

    class SomeDataClass {
        public SomeData Data {get;set;}
    }
    class SomeData {
        static SomeData Load(string path) {
            return new SomeData(); // TODO
        }
        public static implicit operator SomeData(string path)
        {
            return Load(path);
        }
    }
    static class Program {
        static void Main()
        {
            SomeDataClass data1 = new SomeDataClass();
            SomeDataClass data2 = new SomeDataClass();
    
            data1.Data = "somefile.dat"; // this is a load
            data2.Data = data1.Data; // this is not a load
        }
    }
    

    However! Frankly, I would consider it more desirable to just make the operation explicit:

    class SomeDataClass {
        public SomeData Data {get;set;}
    }
    class SomeData {
        public static SomeData Load(string path) {
            return new SomeData(); // TODO
        }
    }
    static class Program {
        static void Main()
        {
            SomeDataClass data1 = new SomeDataClass();
            SomeDataClass data2 = new SomeDataClass();
    
            data1.Data = SomeData.Load("somefile.dat");
            data2.Data = data1.Data;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create an if statement in PHP that prevents a single post
Basically, what I'm trying to create is a page of div tags, each has
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I am trying to understand how to use SyndicationItem to display feed which is
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function

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.