/
CodeStacer
/
SimpleDictionaryEnglishApp
Обзор
Документация
Войти
/
CodeStacer
/
SimpleDictionaryEnglishApp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Platforms/iOS/Program.cs
16 строк
428 B
Durashca
Initial commit: English dictionary
26 июн 2026, 11:18
26 июн 2026, 11:18
734b21a
Код
Авторство
О чём код?
using ObjCRuntime; using UIKit; namespace SimpleDictionaryEnglish { public class Program { // This is the main entry point of the application. static void Main(string[] args) { // if you want to use a different Application Delegate class from "AppDelegate" // you can specify it here. UIApplication.Main(args, null, typeof(AppDelegate)); } } }