2026-01-12 16:13:45 +01:00
|
|
|
|
// See https://aka.ms/new-console-template for more information
|
|
|
|
|
|
using System.Net.Mail;
|
2026-01-15 16:14:11 +01:00
|
|
|
|
using System.Numerics;
|
2026-01-12 16:13:45 +01:00
|
|
|
|
|
|
|
|
|
|
var displayName = "Thomas Ardal";
|
|
|
|
|
|
var email = "thomas@elmah.io";
|
|
|
|
|
|
var mailAddress = new MailAddress(email, displayName);
|
2026-01-15 16:14:11 +01:00
|
|
|
|
var xxx = new Vector3(1, 2, 3);
|
2026-01-12 16:13:45 +01:00
|
|
|
|
return;
|