Initial commit
This commit is contained in:
36
10.3-UpperLowerCase/10.3-UpperLowerCase.csproj
Normal file
36
10.3-UpperLowerCase/10.3-UpperLowerCase.csproj
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{0557EB80-46E7-486A-B339-893C500FCA44}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>UpperLowerCase</RootNamespace>
|
||||
<AssemblyName>10.3-UpperLowerCase</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
<ItemGroup>
|
||||
<Compile Include="UpperLowerCase.cs" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
17
10.3-UpperLowerCase/10.3-UpperLowerCase.sln
Normal file
17
10.3-UpperLowerCase/10.3-UpperLowerCase.sln
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "10.3-UpperLowerCase", "10.3-UpperLowerCase.csproj", "{0557EB80-46E7-486A-B339-893C500FCA44}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0557EB80-46E7-486A-B339-893C500FCA44}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{0557EB80-46E7-486A-B339-893C500FCA44}.Debug|x86.Build.0 = Debug|x86
|
||||
{0557EB80-46E7-486A-B339-893C500FCA44}.Release|x86.ActiveCfg = Release|x86
|
||||
{0557EB80-46E7-486A-B339-893C500FCA44}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
12
10.3-UpperLowerCase/10.3-UpperLowerCase.userprefs
Normal file
12
10.3-UpperLowerCase/10.3-UpperLowerCase.userprefs
Normal file
@@ -0,0 +1,12 @@
|
||||
<Properties StartupItem="10.3-UpperLowerCase.csproj">
|
||||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug|x86" />
|
||||
<MonoDevelop.Ide.Workbench ActiveDocument="UpperLowerCase.cs">
|
||||
<Files>
|
||||
<File FileName="UpperLowerCase.cs" Line="13" Column="32" />
|
||||
</Files>
|
||||
</MonoDevelop.Ide.Workbench>
|
||||
<MonoDevelop.Ide.DebuggingService.Breakpoints>
|
||||
<BreakpointStore />
|
||||
</MonoDevelop.Ide.DebuggingService.Breakpoints>
|
||||
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
|
||||
</Properties>
|
||||
15
10.3-UpperLowerCase/UpperLowerCase.cs
Normal file
15
10.3-UpperLowerCase/UpperLowerCase.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
class UpperLowerCase {
|
||||
public static void Main() {
|
||||
string s1 = " ThIS iS jUSt a NORmal pieCe Of TexT. ";
|
||||
|
||||
Console.WriteLine(s1);
|
||||
Console.WriteLine(s1.ToUpper());
|
||||
Console.WriteLine(s1.ToLower());
|
||||
|
||||
Console.WriteLine(s1.TrimEnd());
|
||||
Console.WriteLine(s1.TrimStart());
|
||||
Console.WriteLine(s1.Trim());
|
||||
}
|
||||
}
|
||||
BIN
10.3-UpperLowerCase/bin/Debug/10.3-UpperLowerCase.exe
Normal file
BIN
10.3-UpperLowerCase/bin/Debug/10.3-UpperLowerCase.exe
Normal file
Binary file not shown.
BIN
10.3-UpperLowerCase/bin/Debug/10.3-UpperLowerCase.pdb
Normal file
BIN
10.3-UpperLowerCase/bin/Debug/10.3-UpperLowerCase.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
C:\Users\Crille\CSharp\10.3-UpperLowerCase\bin\Debug\10.3-UpperLowerCase.exe
|
||||
C:\Users\Crille\CSharp\10.3-UpperLowerCase\bin\Debug\10.3-UpperLowerCase.pdb
|
||||
C:\Users\Crille\CSharp\10.3-UpperLowerCase\obj\x86\Debug\10.3-UpperLowerCase.csprojResolveAssemblyReference.cache
|
||||
C:\Users\Crille\CSharp\10.3-UpperLowerCase\obj\x86\Debug\10.3-UpperLowerCase.exe
|
||||
C:\Users\Crille\CSharp\10.3-UpperLowerCase\obj\x86\Debug\10.3-UpperLowerCase.pdb
|
||||
Binary file not shown.
BIN
10.3-UpperLowerCase/obj/x86/Debug/10.3-UpperLowerCase.exe
Normal file
BIN
10.3-UpperLowerCase/obj/x86/Debug/10.3-UpperLowerCase.exe
Normal file
Binary file not shown.
BIN
10.3-UpperLowerCase/obj/x86/Debug/10.3-UpperLowerCase.pdb
Normal file
BIN
10.3-UpperLowerCase/obj/x86/Debug/10.3-UpperLowerCase.pdb
Normal file
Binary file not shown.
Reference in New Issue
Block a user