Loops Lists and Arrays in c#
This commit is contained in:
parent
2c097039f6
commit
06a6529881
12 changed files with 243 additions and 0 deletions
16
Emne 3/Terminal-ui/Terminal-ui.sln
Normal file
16
Emne 3/Terminal-ui/Terminal-ui.sln
Normal file
|
@ -0,0 +1,16 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Terminal-ui", "Terminal-ui\Terminal-ui.csproj", "{F24C68E5-6740-4E86-94B9-94F522231E46}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{F24C68E5-6740-4E86-94B9-94F522231E46}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F24C68E5-6740-4E86-94B9-94F522231E46}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F24C68E5-6740-4E86-94B9-94F522231E46}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F24C68E5-6740-4E86-94B9-94F522231E46}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
8
Emne 3/Terminal-ui/Terminal-ui/Program.cs
Normal file
8
Emne 3/Terminal-ui/Terminal-ui/Program.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
using Terminal.Gui;
|
||||
|
||||
|
||||
Application.Run<ExampleWindow> ().Dispose ();
|
||||
|
||||
Application.shutdown ();
|
||||
|
15
Emne 3/Terminal-ui/Terminal-ui/Terminal-ui.csproj
Normal file
15
Emne 3/Terminal-ui/Terminal-ui/Terminal-ui.csproj
Normal file
|
@ -0,0 +1,15 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<RootNamespace>Terminal_ui</RootNamespace>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Terminal.Gui" Version="1.17.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
Loading…
Add table
Add a link
Reference in a new issue