ВУЗ:
Составители:
Рубрика:
185
5. Модули клиентского приложения на языке C#
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace MakurinClientApplication
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainClientForm());
5. Модули клиентского приложения на языке C# using System; using System.Collections.Generic; using System.Windows.Forms; namespace MakurinClientApplication { static class Program { ////// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainClientForm()); 185
Страницы
- « первая
- ‹ предыдущая
- …
- 183
- 184
- 185
- 186
- 187
- …
- следующая ›
- последняя »