mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-09 05:35:26 +00:00
20 lines
392 B
C#
20 lines
392 B
C#
using System;
|
|
using System.Linq;
|
|
using BurnOutSharp;
|
|
|
|
namespace Test
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
foreach (string arg in args)
|
|
{
|
|
Console.WriteLine(String.Join("\r\n", ProtectionFind.Scan(arg).Select(kvp => kvp.Key + ": " + kvp.Value)));
|
|
}
|
|
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|