Skip to content

Instantly share code, notes, and snippets.

@NeelBhatt
Created January 6, 2019 11:46
Embed
What would you like to do?
public class SomeEntity
{
public object this[string propertyName]
{
get
{
// get value of property named propertyName
}
set
{
// set value of property named propertyName
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment