homerseklet elemzes kesz

This commit is contained in:
2022-03-22 17:29:31 +01:00
37 changed files with 454 additions and 18 deletions

Binary file not shown.

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>

View File

@@ -0,0 +1,54 @@
<?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>{415D4176-81DD-47F6-B694-0B309EC17AEF}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Homerseklet_elemzes</RootNamespace>
<AssemblyName>Homerseklet_elemzes</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>
<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="Nap.cs" />
<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,64 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Homerseklet_elemzes {
internal class Nap {
private int min_homerseklet;
private int max_homerseklet;
private int evszak;
private int honap;
Random random = new Random();
public Nap(int evszak, int honap) {
this.evszak = evszak;
this.honap = honap;
genMinHom();
genMaxHom();
}
public int getEvszak() {
return evszak;
}
public int getHonap() {
return honap;
}
public int getMinHom() {
return min_homerseklet;
}
public int getMaxHom() {
return max_homerseklet;
}
private void genMinHom() {
if (evszak == 1) //tavasz
min_homerseklet = random.Next(0, 10);
else if (evszak == 2) //nyar
min_homerseklet = random.Next(20, 25);
else if (evszak == 3) //osz
min_homerseklet = random.Next(0, 10);
else//tel
min_homerseklet = random.Next(-10, -5);
}
private void genMaxHom() {
if (evszak == 1) //tavasz
max_homerseklet = random.Next(15, 25);
else if (evszak == 2) //nyar
max_homerseklet = random.Next(25, 35);
else if (evszak == 3) //osz
max_homerseklet = random.Next(15, 20);
else
max_homerseklet = random.Next(0, 5);
}
public string napi_adatok() {
float atlag = (min_homerseklet + max_homerseklet) / 2.0f;
return "Minumum hom: " + min_homerseklet + " maximum hom: " + max_homerseklet
+ " atlag hom: " + atlag + "\n";
}
}
}

View File

@@ -0,0 +1,102 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Homerseklet_elemzes {
internal class Program {
public static void napi_adat(Nap[] napok, int index) {
Console.WriteLine(napok[index - 1].napi_adatok());
}
public static string havi_adat(Nap[] napok, int honap) {
int min = Int32.MaxValue, max = Int32.MinValue;
float atlag = 0;
for (int i = 0; i < napok.Length; i++) {
if(napok[i].getHonap() == honap) {
if(napok[i].getMinHom() < min) min = napok[i].getMinHom();
if(napok[i].getMaxHom() > max) max = napok[i].getMaxHom();
atlag += (napok[i].getMaxHom() + napok[i].getMinHom()) / 2.0f;
}
}
atlag /= 30.0f;
return "Havi minimum: " + min + " havi maximum: " + max + " havi atlag: " + atlag;
}
public static string evszak_adat(Nap[] napok, int evszak) {
int min = Int32.MaxValue, max = Int32.MinValue;
float atlag = 0;
for (int i = 0; i < napok.Length; i++) {
if (napok[i].getEvszak() == evszak) {
if (napok[i].getMinHom() < min) min = napok[i].getMinHom();
if (napok[i].getMaxHom() > max) max = napok[i].getMaxHom();
atlag += (napok[i].getMaxHom() + napok[i].getMinHom()) / 2.0f;
}
}
atlag /= 90.0f;
return "Evszakban minimum: " + min + " evszakban maximum: " + max + " evszak atlag: " + atlag;
}
public static string eves_adat(Nap[] napok) {
int min = Int32.MaxValue, max = Int32.MinValue;
float atlag = 0;
for (int i = 0; i < napok.Length; i++) {
if (napok[i].getMinHom() < min) min = napok[i].getMinHom();
if (napok[i].getMaxHom() > max) max = napok[i].getMaxHom();
atlag += (napok[i].getMaxHom() + napok[i].getMinHom()) / 2.0f;
}
atlag /= 360.0f;
return "Eves minimum: " + min + " eves maximum: " + max + " eves atlag: " + atlag;
}
public static void kiir(Nap[] napok) {
for (int i = 0; i < napok.Length; i++) {
Console.WriteLine(napok[i].napi_adatok() + " | " + napok[i].getHonap() + " | " + napok[i].getEvszak());
}
}
static void Main(string[] args) {
Nap[] napok = new Nap[360]; //minden honapra egysegesen 30 napot szamolunk
short honap = 0;
short evszak = 4;
string folytatas = "igen";
for (int i = 0; i < napok.Length; i++) {
if(i % 30 == 0) honap++; //megfelelo honap szam hozzarendelese a naphoz
if (i == 60 || i == 150 || i == 240 || i == 330) //indexeles a honapokra mivel januarral kezdodik az ev
if (evszak == 4) evszak = 1;
else evszak++;
napok[i] = new Nap(evszak, honap);
}
while(folytatas == "igen") {
Console.WriteLine("Mit szeretne tudni?");
Console.WriteLine("Egy nap adatai (1) | Egy honap adatai (2) | Egy evszak adatai (3) | Az ev adati (4)");
short kerdes = Convert.ToInt16(Console.ReadLine());
if (kerdes == 1) {
Console.WriteLine("Adja meg a nap számát");
short nap = Convert.ToInt16(Console.ReadLine());
napi_adat(napok, nap);
} else if (kerdes == 2) {
Console.WriteLine("Adja meg a hónap számát ");
honap = Convert.ToInt16(Console.ReadLine());
Console.WriteLine(havi_adat(napok, honap));
} else if (kerdes == 3) {
Console.WriteLine("Adja meg az evszak számát ");
evszak = Convert.ToInt16(Console.ReadLine());
Console.WriteLine(evszak_adat(napok, evszak));
}else if(kerdes == 4) {
Console.WriteLine(eves_adat(napok));
}
Console.WriteLine("Szeretne még kérdezni? (igen/nem)");
folytatas = Console.ReadLine();
}
}
}
}

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("Homerseklet_elemzes")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Homerseklet_elemzes")]
[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("415d4176-81dd-47f6-b694-0b309ec17aef")]
// 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.

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 @@
874142727de4bed933437e0e4dcfbcf0f9fce460

View File

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

Binary file not shown.

Binary file not shown.

6
Kor/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.7.2" />
</startup>
</configuration>

54
Kor/Kor.csproj Normal file
View File

@@ -0,0 +1,54 @@
<?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>{70C74504-C5C5-4992-A4FF-F00ADAAF7126}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Kor</RootNamespace>
<AssemblyName>Kor</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>
<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="Kör.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

22
Kor/Kör.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kor {
class Kör {
private double sugar;
public double getSugar() { return sugar; }
public void setSugar() { sugar = Convert.ToDouble(Console.ReadLine()); }
public double kerulet() {
return 2*sugar*Math.PI;
}
public double terulet() {
return Math.Pow(sugar, 2) * Math.PI;
}
}
}

20
Kor/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kor {
class Program {
static void Main(string[] args) {
Console.WriteLine("Kérem a kör sugarát");
Kör kör = new Kör();
kör.setSugar();
Console.WriteLine("Kerület {0} ",kör.kerulet());
Console.WriteLine("Terület {0} ",kör.terulet());
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("Kor")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Kor")]
[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("70c74504-c5c5-4992-a4ff-f00adaaf7126")]
// 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")]

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")]

Binary file not shown.

View File

@@ -1,7 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 17
VisualStudioVersion = 16.0.32106.194 VisualStudioVersion = 17.1.32228.430
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "c-sharp", "c-sharp\c-sharp.csproj", "{A6876A09-53D2-47AF-A648-81BAD791D19D}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "c-sharp", "c-sharp\c-sharp.csproj", "{A6876A09-53D2-47AF-A648-81BAD791D19D}"
EndProject EndProject
@@ -17,15 +17,13 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuborekRendezes", "BuborekR
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivFaktorialis", "RekurzivFaktorialis\RekurzivFaktorialis.csproj", "{F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivFaktorialis", "RekurzivFaktorialis\RekurzivFaktorialis.csproj", "{F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}"
EndProject EndProject
<<<<<<< HEAD
<<<<<<< HEAD
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegularExpressions", "RegularExpressions\RegularExpressions.csproj", "{B8063178-720E-430C-B364-DC3F1DFCE42C}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegularExpressions", "RegularExpressions\RegularExpressions.csproj", "{B8063178-720E-430C-B364-DC3F1DFCE42C}"
======= EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivHatvany", "RekurzivHatvany\RekurzivHatvany.csproj", "{DA385DD5-70CE-4750-BDF8-03915D70F5B9}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivHatvany", "RekurzivHatvany\RekurzivHatvany.csproj", "{DA385DD5-70CE-4750-BDF8-03915D70F5B9}"
>>>>>>> c1046619c649e6be76c3e8746f0c75af47881513 EndProject
======= Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kor", "Kor\Kor.csproj", "{70C74504-C5C5-4992-A4FF-F00ADAAF7126}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivHatvany", "RekurzivHatvany\RekurzivHatvany.csproj", "{DA385DD5-70CE-4750-BDF8-03915D70F5B9}" EndProject
>>>>>>> c1046619c649e6be76c3e8746f0c75af47881513 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Homerseklet_elemzes", "Homerseklet_elemzes\Homerseklet_elemzes.csproj", "{415D4176-81DD-47F6-B694-0B309EC17AEF}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -61,23 +59,22 @@ Global
{F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}.Debug|Any CPU.Build.0 = Debug|Any CPU {F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}.Release|Any CPU.ActiveCfg = Release|Any CPU {F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}.Release|Any CPU.Build.0 = Release|Any CPU {F7BEEB1C-EB73-42E8-A148-3DB8C96B8D56}.Release|Any CPU.Build.0 = Release|Any CPU
<<<<<<< HEAD
<<<<<<< HEAD
{B8063178-720E-430C-B364-DC3F1DFCE42C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {B8063178-720E-430C-B364-DC3F1DFCE42C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B8063178-720E-430C-B364-DC3F1DFCE42C}.Debug|Any CPU.Build.0 = Debug|Any CPU {B8063178-720E-430C-B364-DC3F1DFCE42C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B8063178-720E-430C-B364-DC3F1DFCE42C}.Release|Any CPU.ActiveCfg = Release|Any CPU {B8063178-720E-430C-B364-DC3F1DFCE42C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B8063178-720E-430C-B364-DC3F1DFCE42C}.Release|Any CPU.Build.0 = Release|Any CPU {B8063178-720E-430C-B364-DC3F1DFCE42C}.Release|Any CPU.Build.0 = Release|Any CPU
=======
=======
>>>>>>> c1046619c649e6be76c3e8746f0c75af47881513
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Debug|Any CPU.Build.0 = Debug|Any CPU {DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.ActiveCfg = Release|Any CPU {DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.Build.0 = Release|Any CPU {DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.Build.0 = Release|Any CPU
<<<<<<< HEAD {70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
>>>>>>> c1046619c649e6be76c3e8746f0c75af47881513 {70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Debug|Any CPU.Build.0 = Debug|Any CPU
======= {70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Release|Any CPU.ActiveCfg = Release|Any CPU
>>>>>>> c1046619c649e6be76c3e8746f0c75af47881513 {70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Release|Any CPU.Build.0 = Release|Any CPU
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

Binary file not shown.

Binary file not shown.

View File

@@ -4,3 +4,11 @@ C:\dev\c#\c-sharp\c-sharp\bin\Debug\c-sharp.pdb
C:\dev\c#\c-sharp\c-sharp\obj\Debug\c-sharp.csproj.CoreCompileInputs.cache C:\dev\c#\c-sharp\c-sharp\obj\Debug\c-sharp.csproj.CoreCompileInputs.cache
C:\dev\c#\c-sharp\c-sharp\obj\Debug\c-sharp.exe C:\dev\c#\c-sharp\c-sharp\obj\Debug\c-sharp.exe
C:\dev\c#\c-sharp\c-sharp\obj\Debug\c-sharp.pdb C:\dev\c#\c-sharp\c-sharp\obj\Debug\c-sharp.pdb
C:\dev\c#\c-sharp\bin\Debug\c-sharp.exe.config
C:\dev\c#\c-sharp\bin\Debug\c-sharp.exe
C:\dev\c#\c-sharp\bin\Debug\c-sharp.pdb
C:\dev\c#\c-sharp\obj\Debug\c-sharp.csproj.AssemblyReference.cache
C:\dev\c#\c-sharp\obj\Debug\c-sharp.csproj.SuggestedBindingRedirects.cache
C:\dev\c#\c-sharp\obj\Debug\c-sharp.csproj.CoreCompileInputs.cache
C:\dev\c#\c-sharp\obj\Debug\c-sharp.exe
C:\dev\c#\c-sharp\obj\Debug\c-sharp.pdb

Binary file not shown.

Binary file not shown.