Hi! I'm

M Daniel Lana

Software Developer




1
/// <summary>
2
/// Program.cs - A simple demo to share my contact information
3
/// </summary>
C:\Projects\bin\ConsoleApp.exe

Compiling C:\Projects\bin\ConsoleApp.exe...

Line 5: 'Idle' object is deprecated!
Line 6: Invalid object. Unrecognized symbol.
Line 7: 'LazyLife' contain unsafe code.
2 errors and 1 warning
3 problems found!
Fixed () and Run () application again...

Writing log... Done!

_

4
using MyLife.Objectives.BeHappy; //
Info: updated yesterday! 1 update pending...
5
using MyLife.Rules.Idle; //
Warning: deprecated and not recommended!
6
using System.INeedToReflectOverMyFiaca; //
Error: unrecognized object symbol
7
using MDLSis.Core.LazyLife; //
Warning: Unsafe code. You need to refactor it.
8
using System;
9
namespace MDL.ContactMe {
10
class Program {
11
static void Main(string[] args) {
12
User user = new User("M Daniel Lana", "Software Developer") {
13
Dob = "1973/03/16",
14
WhatsApp = "54956198933",
15
Email = "infomdlsiscom.ar",
17
18
};
19
user.PrintInfo();
20
Console.WriteLine("Press Enter Key to Exit...");
21
Console.ReadLine();
22
}
23
}
24
>
public class User...
35
>
public static class DateUtils...
47
}
48
49