9 lines
281 B
C#
9 lines
281 B
C#
// See https://aka.ms/new-console-template for more information
|
|
using System.Net.Mail;
|
|
using System.Numerics;
|
|
|
|
var displayName = "Thomas Ardal";
|
|
var email = "thomas@elmah.io";
|
|
var mailAddress = new MailAddress(email, displayName);
|
|
var xxx = new Vector3(1, 2, 3);
|
|
return; |