Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CsConsoleApp.cs « CsConsoleApp « project « samples - github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65786ca1c5978d8aeaabb0503ac9e8591a837168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Reflection;
using System.Resources;

public class CsConsoleApp
{
	static int Main()
	{
		Assembly assembly = Assembly.GetExecutingAssembly();
		ResourceManager resx = new ResourceManager("CsConsoleApp.Resources", assembly);
		string greeting = resx.GetString("Greeting");
		Console.WriteLine(greeting);

		Console.WriteLine("CsConsoleApp");

		CsSharedLib lib = new CsSharedLib();
		lib.DoIt();

		return 0;
	}
}