Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Uwe Wienkop
Prog2-SS2020-Wienkop
Commits
e270826f
Commit
e270826f
authored
May 04, 2020
by
Uwe Wienkop
Browse files
2020-05-04
parent
b3faf04a
Changes
16
Hide whitespace changes
Inline
Side-by-side
.vs/prog2-ss2020-wienkop/v16/.suo
View file @
e270826f
No preview for this file type
01Buergeramt/obj/Debug/netcoreapp3.1/01Uebg_Buergeramt-Mo.csprojAssemblyReference.cache
View file @
e270826f
No preview for this file type
01Indexer/obj/Debug/netcoreapp3.1/01Indexer.csprojAssemblyReference.cache
View file @
e270826f
No preview for this file type
01KlassenWiederholung/obj/Debug/netcoreapp3.1/01KlassenWiederholung.csprojAssemblyReference.cache
View file @
e270826f
No preview for this file type
01OperatorTrueFalse/obj/Debug/netcoreapp3.1/01OperatorTrueFalse.csprojAssemblyReference.cache
View file @
e270826f
No preview for this file type
03 UebgMo FiFoListe/03 UebgMo FiFoListe.csproj
0 → 100644
View file @
e270826f
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>_03_UebgMo_FiFoListe</RootNamespace>
</PropertyGroup>
</Project>
03 UebgMo FiFoListe/Program.cs
0 → 100644
View file @
e270826f
using
System
;
namespace
_03_UebgMo_FiFoListe
{
class
FiFoListe
{
class
Element
{
public
string
name
;
public
Element
(
string
name
)
{
this
.
name
=
name
;
}
public
override
string
ToString
()
=>
name
;
}
Element
anf
,
ende
;
int
anz
;
public
FiFoListe
()
{
}
/// <summary>
/// Fügt der Warteschlange ein neues Element hinzu
/// </summary>
/// <param name="text"></param>
public
void
Push
(
string
text
)
{
}
/// <summary>
///
/// </summary>
/// <param name="textFeld"></param>
public
void
Push
(
params
string
[]
textFeld
)
{
}
/// <summary>
/// Liefert das erste Element zurück. Es bleibt aber in der Warteschlange
/// </summary>
/// <returns></returns>
public
string
First
()
{
}
/// <summary>
/// Liefert Wert des ersten Ausgabeelements zurück UND entfernt dieses aus der Warteschlange
/// </summary>
/// <returns></returns>
public
string
Pop
()
//
{
// 1.Fall: Liste ist leer
// 2.Fall: Liste besteht nur aus *einem* Element
// 3.Fall: Liste hat mehr als ein Element
}
/// <summary>
/// Gibt alle Elemente der Warteschlange auf dem Bildschirm aus
/// </summary>
public
void
WriteAll
()
{
}
/// <summary>
/// liefert ein string-Feld mit allen gespeicherten Elementen zurück;
/// Elemente verbleiben in der Liste
/// </summary>
/// <returns></returns>
public
string
[]
GetAll
()
{
}
/// <summary>
/// Anzahl der Elemente in der Warteschlange zurückgeben
/// </summary>
public
int
ItemCount
{
}
}
class
Program
{
static
void
Main
(
string
[]
args
)
{
FiFoListe
f
=
new
FiFoListe
();
f
.
Push
(
"Anton"
);
f
.
Push
(
"Berta"
,
"Claudia"
,
"Dieter"
,
"Emil"
,
"Gustav"
);
Console
.
WriteLine
(
$"Anzahl der Elemente in der Liste:
{
f
.
ItemCount
}
"
);
f
.
WriteAll
();
Console
.
WriteLine
(
"--------------"
);
Console
.
WriteLine
(
$"Erstes Element:
{
f
.
First
()}
"
);
Console
.
WriteLine
(
$"Pop:
{
f
.
Pop
()}
"
);
Console
.
WriteLine
(
$"Pop:
{
f
.
Pop
()}
"
);
Console
.
WriteLine
(
$"Anzahl der Elemente in der Liste:
{
f
.
ItemCount
}
"
);
Console
.
WriteLine
(
"--------------"
);
string
[]
namen
=
f
.
GetAll
();
foreach
(
string
item
in
namen
)
{
Console
.
WriteLine
(
$"foreach:
{
item
}
"
);
}
}
}
}
03 UebgMo FiFoListe/obj/03 UebgMo FiFoListe.csproj.nuget.dgspec.json
0 → 100644
View file @
e270826f
{
"format"
:
1
,
"restore"
:
{
"C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\03 UebgMo FiFoListe\\03 UebgMo FiFoListe.csproj"
:
{}
},
"projects"
:
{
"C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\03 UebgMo FiFoListe\\03 UebgMo FiFoListe.csproj"
:
{
"version"
:
"1.0.0"
,
"restore"
:
{
"projectUniqueName"
:
"C:
\\
Users
\\
wienkop
\\
source
\\
repos
\\
prog2-ss2020-wienkop
\\
03 UebgMo FiFoListe
\\
03 UebgMo FiFoListe.csproj"
,
"projectName"
:
"03 UebgMo FiFoListe"
,
"projectPath"
:
"C:
\\
Users
\\
wienkop
\\
source
\\
repos
\\
prog2-ss2020-wienkop
\\
03 UebgMo FiFoListe
\\
03 UebgMo FiFoListe.csproj"
,
"packagesPath"
:
"C:
\\
Users
\\
wienkop
\\
.nuget
\\
packages
\\
"
,
"outputPath"
:
"C:
\\
Users
\\
wienkop
\\
source
\\
repos
\\
prog2-ss2020-wienkop
\\
03 UebgMo FiFoListe
\\
obj
\\
"
,
"projectStyle"
:
"PackageReference"
,
"configFilePaths"
:
[
"C:
\\
Users
\\
wienkop
\\
AppData
\\
Roaming
\\
NuGet
\\
NuGet.Config"
,
"C:
\\
Program Files (x86)
\\
NuGet
\\
Config
\\
Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks"
:
[
"netcoreapp3.1"
],
"sources"
:
{
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\"
:
{},
"https://api.nuget.org/v3/index.json"
:
{}
},
"frameworks"
:
{
"netcoreapp3.1"
:
{
"projectReferences"
:
{}
}
},
"warningProperties"
:
{
"warnAsError"
:
[
"NU1605"
]
}
},
"frameworks"
:
{
"netcoreapp3.1"
:
{
"imports"
:
[
"net461"
,
"net462"
,
"net47"
,
"net471"
,
"net472"
,
"net48"
],
"assetTargetFallback"
:
true
,
"warn"
:
true
,
"frameworkReferences"
:
{
"Microsoft.NETCore.App"
:
{
"privateAssets"
:
"all"
}
},
"runtimeIdentifierGraphPath"
:
"C:
\\
Program Files
\\
dotnet
\\
sdk
\\
3.1.201
\\
RuntimeIdentifierGraph.json"
}
}
}
}
}
\ No newline at end of file
03 UebgMo FiFoListe/obj/03 UebgMo FiFoListe.csproj.nuget.g.props
0 → 100644
View file @
e270826f
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project
ToolsVersion=
"14.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup
Condition=
" '$(ExcludeRestorePackageImports)' != 'true' "
>
<RestoreSuccess
Condition=
" '$(RestoreSuccess)' == '' "
>
True
</RestoreSuccess>
<RestoreTool
Condition=
" '$(RestoreTool)' == '' "
>
NuGet
</RestoreTool>
<ProjectAssetsFile
Condition=
" '$(ProjectAssetsFile)' == '' "
>
$(MSBuildThisFileDirectory)project.assets.json
</ProjectAssetsFile>
<NuGetPackageRoot
Condition=
" '$(NuGetPackageRoot)' == '' "
>
$(UserProfile)\.nuget\packages\
</NuGetPackageRoot>
<NuGetPackageFolders
Condition=
" '$(NuGetPackageFolders)' == '' "
>
C:\Users\wienkop\.nuget\packages\
</NuGetPackageFolders>
<NuGetProjectStyle
Condition=
" '$(NuGetProjectStyle)' == '' "
>
PackageReference
</NuGetProjectStyle>
<NuGetToolVersion
Condition=
" '$(NuGetToolVersion)' == '' "
>
5.5.0
</NuGetToolVersion>
</PropertyGroup>
<PropertyGroup>
<MSBuildAllProjects>
$(MSBuildAllProjects);$(MSBuildThisFileFullPath)
</MSBuildAllProjects>
</PropertyGroup>
</Project>
\ No newline at end of file
03 UebgMo FiFoListe/obj/03 UebgMo FiFoListe.csproj.nuget.g.targets
0 → 100644
View file @
e270826f
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project
ToolsVersion=
"14.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<PropertyGroup>
<MSBuildAllProjects>
$(MSBuildAllProjects);$(MSBuildThisFileFullPath)
</MSBuildAllProjects>
</PropertyGroup>
</Project>
\ No newline at end of file
03 UebgMo FiFoListe/obj/Debug/netcoreapp3.1/03 UebgMo FiFoListe.AssemblyInfo.cs
0 → 100644
View file @
e270826f
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using
System
;
using
System.Reflection
;
[
assembly
:
System
.
Reflection
.
AssemblyCompanyAttribute
(
"03 UebgMo FiFoListe"
)]
[
assembly
:
System
.
Reflection
.
AssemblyConfigurationAttribute
(
"Debug"
)]
[
assembly
:
System
.
Reflection
.
AssemblyFileVersionAttribute
(
"1.0.0.0"
)]
[
assembly
:
System
.
Reflection
.
AssemblyInformationalVersionAttribute
(
"1.0.0"
)]
[
assembly
:
System
.
Reflection
.
AssemblyProductAttribute
(
"03 UebgMo FiFoListe"
)]
[
assembly
:
System
.
Reflection
.
AssemblyTitleAttribute
(
"03 UebgMo FiFoListe"
)]
[
assembly
:
System
.
Reflection
.
AssemblyVersionAttribute
(
"1.0.0.0"
)]
// Von der MSBuild WriteCodeFragment-Klasse generiert.
03 UebgMo FiFoListe/obj/Debug/netcoreapp3.1/03 UebgMo FiFoListe.AssemblyInfoInputs.cache
0 → 100644
View file @
e270826f
222e6455147d1543dd2d728e945a09cbf57495bb
03 UebgMo FiFoListe/obj/Debug/netcoreapp3.1/03 UebgMo FiFoListe.assets.cache
0 → 100644
View file @
e270826f
File added
03 UebgMo FiFoListe/obj/project.assets.json
0 → 100644
View file @
e270826f
{
"version"
:
3
,
"targets"
:
{
".NETCoreApp,Version=v3.1"
:
{}
},
"libraries"
:
{},
"projectFileDependencyGroups"
:
{
".NETCoreApp,Version=v3.1"
:
[]
},
"packageFolders"
:
{
"C:\\Users\\wienkop\\.nuget\\packages\\"
:
{}
},
"project"
:
{
"version"
:
"1.0.0"
,
"restore"
:
{
"projectUniqueName"
:
"C:
\\
Users
\\
wienkop
\\
source
\\
repos
\\
prog2-ss2020-wienkop
\\
03 UebgMo FiFoListe
\\
03 UebgMo FiFoListe.csproj"
,
"projectName"
:
"03 UebgMo FiFoListe"
,
"projectPath"
:
"C:
\\
Users
\\
wienkop
\\
source
\\
repos
\\
prog2-ss2020-wienkop
\\
03 UebgMo FiFoListe
\\
03 UebgMo FiFoListe.csproj"
,
"packagesPath"
:
"C:
\\
Users
\\
wienkop
\\
.nuget
\\
packages
\\
"
,
"outputPath"
:
"C:
\\
Users
\\
wienkop
\\
source
\\
repos
\\
prog2-ss2020-wienkop
\\
03 UebgMo FiFoListe
\\
obj
\\
"
,
"projectStyle"
:
"PackageReference"
,
"configFilePaths"
:
[
"C:
\\
Users
\\
wienkop
\\
AppData
\\
Roaming
\\
NuGet
\\
NuGet.Config"
,
"C:
\\
Program Files (x86)
\\
NuGet
\\
Config
\\
Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks"
:
[
"netcoreapp3.1"
],
"sources"
:
{
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\"
:
{},
"https://api.nuget.org/v3/index.json"
:
{}
},
"frameworks"
:
{
"netcoreapp3.1"
:
{
"projectReferences"
:
{}
}
},
"warningProperties"
:
{
"warnAsError"
:
[
"NU1605"
]
}
},
"frameworks"
:
{
"netcoreapp3.1"
:
{
"imports"
:
[
"net461"
,
"net462"
,
"net47"
,
"net471"
,
"net472"
,
"net48"
],
"assetTargetFallback"
:
true
,
"warn"
:
true
,
"frameworkReferences"
:
{
"Microsoft.NETCore.App"
:
{
"privateAssets"
:
"all"
}
},
"runtimeIdentifierGraphPath"
:
"C:
\\
Program Files
\\
dotnet
\\
sdk
\\
3.1.201
\\
RuntimeIdentifierGraph.json"
}
}
}
}
\ No newline at end of file
03 UebgMo FiFoListe/obj/project.nuget.cache
0 → 100644
View file @
e270826f
{
"version": 2,
"dgSpecHash": "i8IiL9AiRX/O8Ku2xqHZ7XwZUJ7L7WgrubdnBUgI2Oe0L0p6WIJkrdHAkhtp8JC0czNxYhyWEd872oHP/lEJxg==",
"success": true,
"projectFilePath": "C:\\Users\\wienkop\\source\\repos\\prog2-ss2020-wienkop\\03 UebgMo FiFoListe\\03 UebgMo FiFoListe.csproj",
"expectedPackageFiles": [],
"logs": []
}
\ No newline at end of file
prog2-ss2020-wienkop.sln
View file @
e270826f
...
...
@@ -30,7 +30,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "02VerketteteListe-1Intro",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "02VerketteteListe-2", "02VerketteteListe-2\02VerketteteListe-2.csproj", "{EC53AD78-5283-4784-8F93-49AF021BC2DC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "02 UebgSa FiFoListe", "02 UebgSa FiFoListe\02 UebgSa FiFoListe.csproj", "{BA0D110D-7CBD-4EC0-893F-A94324066ADA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "02 UebgSa FiFoListe", "02 UebgSa FiFoListe\02 UebgSa FiFoListe.csproj", "{BA0D110D-7CBD-4EC0-893F-A94324066ADA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "03 UebgMo FiFoListe", "03 UebgMo FiFoListe\03 UebgMo FiFoListe.csproj", "{8A18FA14-5B36-46B3-BB62-907E6A2855A3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
...
@@ -86,6 +88,10 @@ Global
{BA0D110D-7CBD-4EC0-893F-A94324066ADA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BA0D110D-7CBD-4EC0-893F-A94324066ADA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BA0D110D-7CBD-4EC0-893F-A94324066ADA}.Release|Any CPU.Build.0 = Release|Any CPU
{8A18FA14-5B36-46B3-BB62-907E6A2855A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8A18FA14-5B36-46B3-BB62-907E6A2855A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8A18FA14-5B36-46B3-BB62-907E6A2855A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8A18FA14-5B36-46B3-BB62-907E6A2855A3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment