auto lista

This commit is contained in:
2022-05-18 17:56:52 +02:00
parent a6a965d4ec
commit 4ebeab9e53
51 changed files with 2661 additions and 0 deletions

6
AutoLista/App.config Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>

28
AutoLista/Auto.cs Normal file
View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoLista {
public class Auto {
private string rendszam;
private string tipus;
private DateTime gyartas;
private int muszaki;
private string tulajdonos;
public Auto(string rendszam, string tipus, DateTime gyartas, int muszaki, string tulajdonos) {
this.rendszam = rendszam;
this.tipus = tipus;
this.gyartas = gyartas;
this.muszaki = muszaki;
this.tulajdonos = tulajdonos;
}
public void kiir() {
//rendszam, tipus, gyartas, muszaki, tulaj
Console.WriteLine("Rendszam: " + rendszam + " Tipus: "+tipus + " Gyartasi ev: "+gyartas.ToShortDateString() + " Muszaki: " + muszaki + " Tulajdonos: " + tulajdonos);
}
}
}

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{1AD59409-0F91-46A7-A35A-1B13487FFA58}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>AutoLista</RootNamespace>
<AssemblyName>AutoLista</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Auto.cs" />
<Compile Include="ListaGen.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

1114
AutoLista/ListaGen.cs Normal file

File diff suppressed because it is too large Load Diff

40
AutoLista/Program.cs Normal file
View File

@@ -0,0 +1,40 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Windows.Input;
namespace AutoLista {
internal class Program {
static void Main(string[] args) {
Keyboard keyboard = new Keyboard();
//lista letrehozas
ListaGen lista = new ListaGen();
lista.fajlIras();
List<Auto> autok = new List<Auto>();
StreamReader reader = new StreamReader(@"autok.txt", Encoding.Default);
int c = 0;
while (!reader.EndOfStream) {
if (c % 100000 == 0) Console.WriteLine(c + " beolvasva");
c++;
string input = reader.ReadLine();
string[] adatok = input.Split(',');
autok.Add(new Auto(adatok[0], adatok[1], DateTime.Parse(adatok[2]), Convert.ToInt32(adatok[3]), adatok[4]));
}
for (int i = 0; i < autok.Count; i++) {
//if (i % 100000 == 0)
autok[i].kiir();
}
Console.ReadKey();
}
}
}

View File

@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("AutoLista")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("AutoLista")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("1ad59409-0f91-46a7-a35a-1b13487ffa58")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Binary file not shown.

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>

Binary file not shown.

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]

View File

@@ -0,0 +1 @@
e7d25a20464e507bab0c54b30f4a7dfdaffb2962

View File

@@ -0,0 +1,8 @@
C:\dev\c#\c-sharp\AutoLista\bin\Debug\AutoLista.exe.config
C:\dev\c#\c-sharp\AutoLista\bin\Debug\AutoLista.exe
C:\dev\c#\c-sharp\AutoLista\bin\Debug\AutoLista.pdb
C:\dev\c#\c-sharp\AutoLista\obj\Debug\AutoLista.csproj.AssemblyReference.cache
C:\dev\c#\c-sharp\AutoLista\obj\Debug\AutoLista.csproj.SuggestedBindingRedirects.cache
C:\dev\c#\c-sharp\AutoLista\obj\Debug\AutoLista.csproj.CoreCompileInputs.cache
C:\dev\c#\c-sharp\AutoLista\obj\Debug\AutoLista.exe
C:\dev\c#\c-sharp\AutoLista\obj\Debug\AutoLista.pdb

Binary file not shown.

Binary file not shown.