presentations/highlight-js/test/detect/cs/default.txt

17 lines
335 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
using System.IO.Compression;
#pragma warning disable 414, 3021
namespace MyApplication
{
[Obsolete("...")]
class Program : IInterface
{
public static List<int> JustDoIt(int count)
{
Console.WriteLine($"Hello {Name}!");
return new List<int>(new int[] { 1, 2, 3 })
}
}
}