diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2.sln" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2.sln"
new file mode 100644
index 0000000000000000000000000000000000000000..973128b06bc2c539cb08787d945104ea855fffa8
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2.sln"
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.30011.22
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApp2", "ConsoleApp2\ConsoleApp2.csproj", "{3801D754-A531-4AD6-B491-C032B47B0858}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {3801D754-A531-4AD6-B491-C032B47B0858}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {3801D754-A531-4AD6-B491-C032B47B0858}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3801D754-A531-4AD6-B491-C032B47B0858}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {3801D754-A531-4AD6-B491-C032B47B0858}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {55AEB593-6A38-417C-8CAA-A959417EA7CA}
+ EndGlobalSection
+EndGlobal
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/.vs/VSWorkspaceState.json" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/.vs/VSWorkspaceState.json"
new file mode 100644
index 0000000000000000000000000000000000000000..d56fd04536be1957a149b79287c8d51f02548e13
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/.vs/VSWorkspaceState.json"
@@ -0,0 +1,8 @@
+{
+ "ExpandedNodes": [
+ "",
+ "\\Properties"
+ ],
+ "SelectedNode": "\\Properties\\AssemblyInfo.cs",
+ "PreviewInSolutionExplorer": false
+}
\ No newline at end of file
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/.vs/slnx.sqlite" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/.vs/slnx.sqlite"
new file mode 100644
index 0000000000000000000000000000000000000000..25a1b047e245a1f0eaae582c3efef3504cf97804
Binary files /dev/null and "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/.vs/slnx.sqlite" differ
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/App.config" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/App.config"
new file mode 100644
index 0000000000000000000000000000000000000000..57547288bc6146d6494f7eb02bba6f92758ff00c
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/App.config"
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/ConsoleApp2.csproj" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/ConsoleApp2.csproj"
new file mode 100644
index 0000000000000000000000000000000000000000..ff2d0f9ef7cbbf08e71fe282f1060a0e72dda443
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/ConsoleApp2.csproj"
@@ -0,0 +1,53 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {3801D754-A531-4AD6-B491-C032B47B0858}
+ Exe
+ ConsoleApp2
+ ConsoleApp2
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/Program.cs" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/Program.cs"
new file mode 100644
index 0000000000000000000000000000000000000000..25c4384036518952c3874cd64c6e5406f3ddebce
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/Program.cs"
@@ -0,0 +1,36 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace ConsoleApp2
+{
+ static class Program
+ {
+ static void Main(string[] args)
+ {
+ string[] arr =
+ {
+ "我很帅",
+ "知道吗",
+ };
+ arr.PrintArrayInfo();
+
+ var str = "我比你爸帅,嘤嘤嘤";
+ var a = str.Split(',');
+ a.PrintArrayInfo();
+ foreach (var item in str)
+ {
+ Console.WriteLine(item);
+ }
+ }
+ public static void PrintArrayInfo(this string[] arr)
+ {
+ for (int i =0;i
+
+
+
+
+
\ No newline at end of file
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/bin/Debug/ConsoleApp2.pdb" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/bin/Debug/ConsoleApp2.pdb"
new file mode 100644
index 0000000000000000000000000000000000000000..52543b94edda68f2e5e61cd156f47af57f0f9a19
Binary files /dev/null and "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/bin/Debug/ConsoleApp2.pdb" differ
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csproj.CoreCompileInputs.cache" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csproj.CoreCompileInputs.cache"
new file mode 100644
index 0000000000000000000000000000000000000000..13cbe732f37c10c5ac1b524ff022e51626e89748
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csproj.CoreCompileInputs.cache"
@@ -0,0 +1 @@
+47840f7aefefafde664d64b2b766d0c3ca758970
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csproj.FileListAbsolute.txt" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csproj.FileListAbsolute.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..6b14b16eb833688ba1a9099aaf68903eb26b87e9
--- /dev/null
+++ "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csproj.FileListAbsolute.txt"
@@ -0,0 +1,7 @@
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\bin\Debug\ConsoleApp2.exe.config
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\bin\Debug\ConsoleApp2.exe
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\bin\Debug\ConsoleApp2.pdb
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\obj\Debug\ConsoleApp2.csprojAssemblyReference.cache
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\obj\Debug\ConsoleApp2.csproj.CoreCompileInputs.cache
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\obj\Debug\ConsoleApp2.exe
+d:\Users\ASUS\source\repos\ConsoleApp2\ConsoleApp2\obj\Debug\ConsoleApp2.pdb
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csprojAssemblyReference.cache" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csprojAssemblyReference.cache"
new file mode 100644
index 0000000000000000000000000000000000000000..8b2ee1980e62de6fe0bf62bf57ba140bfa6ea1db
Binary files /dev/null and "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.csprojAssemblyReference.cache" differ
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.exe" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.exe"
new file mode 100644
index 0000000000000000000000000000000000000000..243c38bfcde7e7bfe81a92b03e3a5f6176438ec8
Binary files /dev/null and "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.exe" differ
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.pdb" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.pdb"
new file mode 100644
index 0000000000000000000000000000000000000000..52543b94edda68f2e5e61cd156f47af57f0f9a19
Binary files /dev/null and "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/ConsoleApp2.pdb" differ
diff --git "a/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache" "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache"
new file mode 100644
index 0000000000000000000000000000000000000000..8858a2c5795b6a5349fd1a273dc2466e57feda32
Binary files /dev/null and "b/\351\231\210\345\273\272\351\276\231/ConsoleApp2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache" differ