forked from az64/mm-rando
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfAbout.cs
More file actions
30 lines (28 loc) · 656 Bytes
/
fAbout.cs
File metadata and controls
30 lines (28 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Windows.Forms;
namespace MMRando
{
public partial class fAbout : Form
{
public fAbout()
{
InitializeComponent();
lVer.Text = AssemblyVersion;
}
public string AssemblyVersion
{
get
{
Version v = Assembly.GetExecutingAssembly().GetName().Version;
return String.Format("v{0}.{1}", v.Major, v.Minor);
}
}
}
}