mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-10 20:29:10 +01:00
30097510a8
Signed-off-by: Thomas Nagy <tnagy2pow10@gmail.com>
25 lines
395 B
C#
25 lines
395 B
C#
using System;
|
|
|
|
public class Dye {
|
|
private string msg = "";
|
|
|
|
public Dye(string _msg) {
|
|
msg = _msg;
|
|
}
|
|
|
|
private static string PointerSizeDescription {
|
|
get {
|
|
if (IntPtr.Size==8) {
|
|
return "64-bit";
|
|
} else if (IntPtr.Size==4) {
|
|
return "32-bit";
|
|
}
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
public void display() {
|
|
System.Console.WriteLine("{0} ({1})", msg, PointerSizeDescription);
|
|
}
|
|
}
|