Skip to content

Instantly share code, notes, and snippets.

@Sergio0694
Created September 20, 2019 14:20
Show Gist options
  • Save Sergio0694/273de81b1a33c7e08952a83f74434fdf to your computer and use it in GitHub Desktop.
Save Sergio0694/273de81b1a33c7e08952a83f74434fdf to your computer and use it in GitHub Desktop.
public static void Main()
{
object instance = new Vector3(1, 2, 3);
foreach (FieldInfo property in instance.GetType().GetFields())
{
Console.WriteLine($"{property.Name}: {property.GetValue(instance)}");
// X: 1
// Y: 2
// Z: 3
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment