Files
mapo-mono/MP.MONO.DECODER/MyClass.cs
T
2022-03-11 19:20:49 +01:00

18 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.MONO.DECODER
{
public class MyClass
{
public int IntegerProperty { get; set; }
public void DoSomething(string p)
{
Console.WriteLine($"Doing something: {p}");
}
}
}