This commit is contained in:
2022-04-07 18:31:07 +02:00
parent db9f2ec687
commit baf73a91fe
837 changed files with 2323 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<gcAllowVeryLargeObjects enabled="true" />
</runtime>
</configuration>

View File

@@ -0,0 +1,73 @@
<?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>{73FAE19E-8461-4940-B9CD-1F86B0F8BEC0}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>ListaMeddigBirja</RootNamespace>
<AssemblyName>ListaMeddigBirja</AssemblyName>
<TargetFrameworkVersion>v4.7.2</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>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
</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="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
using System.IO;
namespace ListaMeddigBirja {
internal class Program {
static void Main(string[] args) {
List<byte> szamok1 = new List<byte>();
Console.WriteLine("Milyen hosszú legyen a lista?");
Random random = new Random();
Stopwatch timer = new Stopwatch();
//int a = Convert.ToInt32(Console.ReadLine());
timer.Start();
uint i = 0;
try {
for (i = 0; i < Int32.MaxValue; i++) {
szamok1.Add(Convert.ToByte(random.Next(1, 10)));
}
} catch (OutOfMemoryException e) {
Console.WriteLine(e.Message);
Console.WriteLine(i);
timer.Stop();
while (true);
}
/*for (int i = 0; i < a; i++) {
Console.WriteLine("{0}/{1}", szamok[i], i);
}*/
timer.Stop();
StreamWriter writer = new StreamWriter("eltelt_ido.txt");
writer.WriteLine("ido: " + timer.Elapsed);
writer.Close();
Console.WriteLine("ido: " + timer.Elapsed);
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("ListaMeddigBirja")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ListaMeddigBirja")]
[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("73fae19e-8461-4940-b9cd-1f86b0f8bec0")]
// 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.7.2" />
</startup>
</configuration>

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<gcAllowVeryLargeObjects enabled="true" />
</runtime>
</configuration>

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<gcAllowVeryLargeObjects enabled="true" />
</runtime>
</configuration>

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<gcAllowVeryLargeObjects enabled="true" />
</runtime>
</configuration>

Binary file not shown.

View File

@@ -0,0 +1 @@
ido: 00:00:21.3172142

View File

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

View File

@@ -0,0 +1 @@
7f4b213b428f4c013f19137338418ee1f5525793

View File

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

Binary file not shown.

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.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]

View File

@@ -0,0 +1 @@
6059d4e65ee015d416e91b2605eaf86bfd91c969

View File

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

Binary file not shown.

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.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]

View File

@@ -0,0 +1 @@
a716bfef2e809d656a083b5be6f3dfe2908c1bec

View File

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

Binary file not shown.

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.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]

View File

@@ -0,0 +1 @@
0ad2913c3c24bfd3eb472a8770b9e4a19a0c875d

View File

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

Binary file not shown.

Binary file not shown.