TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Kunjahamed P
NA
376
41.3k
get full 'path' of nested class object?
Jul 10 2020 3:11 AM
Is it possible to get the full 'path' nested class object
ex:
public
class
Member
{
public
string
Name;
public
Address Address;
}
public
class
Address
{
public
string
Line1;
public
string
Line2;
public
string
Line3;
}
Imagine I have an instance of this class named m. Is it possible to get the full path as "Member.Address.Line1" (as string), by any methods, just by passing somehow m.Address.Line1?
Reply
Answers (
3
)
How to create tag helper in ASP.NET Core 3.0?
How to copy from an array to list...?