Skip to content

Instantly share code, notes, and snippets.

@tonysneed
Last active July 4, 2020 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonysneed/c645413acb82303e0b2265d1a8020082 to your computer and use it in GitHub Desktop.
Save tonysneed/c645413acb82303e0b2265d1a8020082 to your computer and use it in GitHub Desktop.
using System;
using System.Windows.Media.Media3D;
namespace MyWpfConsoleApp
{
public static class Program
{
public static void Main()
{
var point = new Point3D(1, 2, 3);
Console.WriteLine($"Point X: {point.X}, Y: {point.Y}, Z: {point.Z}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment