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

  • Home
  • SEARCH
  • 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 7023803
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:45:26+00:00 2026-05-27T23:45:26+00:00

I have a class with only string members like this : public class MyClass

  • 0

I have a class with only string members like this :

public class MyClass
{
    public string MyProp1 { get; set; }
    public string MyProp2 { get; set; }
}

I create an instance :

Var myClass = new MyClass();

Later in the code, I’d like to know if all the member (MyProp1 and MyProp2) are not null or empty. I know I can use a if of course but there is much more properties than 2 in my real code.

Is there a way to do this ?

Thanks,

  • 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-27T23:45:27+00:00Added an answer on May 27, 2026 at 11:45 pm

    Using a dictionary based store for your properties is probably the easiest way of doing this:

    public class MyClass
    {
        private IDictionary<String, String> _store;
    
        public MyClass()
        {
            _store = new Dictionary<String, String>();
        }
    
        public string MyProp1 { 
            get { return GetOrDefault("MyProp1"); }
            set { _store["MyProp1"] = value; }
        }
        public string MyProp2 { 
            get { return GetOrDefault("MyProp2"); }
            set { _store["MyProp2"] = value; }
        }
    
        public Boolean HasData()
        {
            return _store.Any(x => !String.IsNullOrWhiteSpace(x.Value));
        }
    
        public Boolean IsEmpty()
        {
            return _store.All(x => String.IsNullOrWhiteSpace(x.Value));
        }   
    
        private String GetOrDefault(String propertyName)
        {
            if (_store.ContainsKey(propertyName))
            {
                return _store[propertyName];
            }
    
            return String.Empty;
        }
    }
    

    Another method for doing this would be to compare it with a default instance:

    public class MyClass
    {
        public string MyProp1 { get; set; }
        public string MyProp2 { get; set; }
    
        public static readonly MyClass Empty = new MyClass();
    
        public Boolean HasData()
        {
            return !Empty.Equals(this);
        }
    
        public Boolean IsEmpty()
        {
            return Empty.Equals(this);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose you have a viewModel: public class CreatePersonViewModel { [Required] public bool HasDeliveryAddress {get;set;}
For a type like this: public class BlurEffect { public const string Name =
I have a very simple class with only one field member (e.g. String). Is
Assuming I have only the class name of a generic as a string in
I have only one class with many instances. Every instance is observer of couple
I have a simple data contract: [DataContract] public class MyData { [DataMember] public string
I have a class that only really ever needed by classes in a certain
I have a class with only class methods (utility stuff), so my interface is
Given: I have an interface. I have only class that implements that interface. Question:
I have a template class that is only valid for couple of template parameters:

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.