Skip to content

Instantly share code, notes, and snippets.

@Sergio0694
Last active September 25, 2019 11:57
Show Gist options
  • Save Sergio0694/45f8b6fd3fbf5f5d65e2ce30d27217ce to your computer and use it in GitHub Desktop.
Save Sergio0694/45f8b6fd3fbf5f5d65e2ce30d27217ce to your computer and use it in GitHub Desktop.
public static void Main()
{
object instance = "Hello world";
Type type = instance.GetType(); // System.String
PropertyInfo property = type.GetProperty("Length");
object value = property.GetValue(instance);
Console.WriteLine(value); // Prints 11
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment