ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/Win32/Sojaner.MemoryScanner/VersionMagic.cs
Revision: 88
Committed: Wed May 9 20:52:20 2012 UTC (11 years, 4 months ago) by william
File size: 459 byte(s)
Log Message:

File Contents

# User Rev Content
1 william 88 using System;
2     using System.Collections.Generic;
3     using System.Text;
4     using System.Reflection;
5    
6     namespace Sojaner.MemoryScanner
7     {
8     public class VersionMagic : IStaticVersionMagic
9     {
10     public static new string GetVersion()
11     {
12     return string.Format("{0}: v{1}", Assembly.GetAssembly(typeof(ProcessMemoryReader)).GetName().Name, Assembly.GetAssembly(typeof(ProcessMemoryReader)).GetName().Version);
13     }
14     }
15     }