13 lines
337 B
C#
13 lines
337 B
C#
namespace IOB_MAN8.App
|
|
{
|
|
public partial class MainBlazor
|
|
{
|
|
private int currentCount = 0;
|
|
|
|
private System.Reflection.AssemblyName? CurrAssembly { get; set; } = System.Reflection.Assembly.GetExecutingAssembly().GetName();
|
|
private void IncrementCount()
|
|
{
|
|
currentCount++;
|
|
}
|
|
}
|
|
} |