質問編集履歴

2

マークダウンの修正

2017/05/19 07:21

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,10 +1,14 @@
1
+ ```C#
2
+
1
- </>string[] a = { "123", "456" };byte[] SendBuffer = Encoding.Unicode.GetBytes(a[0]);
3
+ string[] a = { "123", "456" };byte[] SendBuffer = Encoding.Unicode.GetBytes(a[0]);
2
4
 
3
5
 
4
6
 
5
7
  string A = new string(Encoding.Unicode.GetString(SendBuffer).ToCharArray());
6
8
 
7
- Console.WriteLine(A);</>
9
+ Console.WriteLine(A);
10
+
11
+ ```
8
12
 
9
13
 
10
14
 
@@ -14,7 +18,9 @@
14
18
 
15
19
 
16
20
 
21
+ ```C#
22
+
17
- </>string[] a = { "123", "456" };
23
+ string[] a = { "123", "456" };
18
24
 
19
25
  for (int i = 0; i < a.Length; i++)
20
26
 
@@ -26,7 +32,9 @@
26
32
 
27
33
  Console.WriteLine(A);
28
34
 
35
+ }
36
+
29
- }</>
37
+ ```
30
38
 
31
39
  にすれば"123"と"456"が表示できるのはわかります。
32
40
 
@@ -36,13 +44,17 @@
36
44
 
37
45
 
38
46
 
47
+ ```C#
48
+
39
- </>string[] a = { "123", "456" };
49
+ string[] a = { "123", "456" };
40
50
 
41
51
  byte[] SendBuffer = Encoding.Unicode.GetBytes(a[a.Length]);
42
52
 
43
53
  string A = new string(Encoding.Unicode.GetString(SendBuffer).ToCharArray());
44
54
 
45
- Console.WriteLine(A);</>
55
+ Console.WriteLine(A);
56
+
57
+ ```
46
58
 
47
59
 
48
60
 

1

マークダウン

2017/05/19 07:21

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,10 +1,10 @@
1
- string[] a = { "123", "456" };byte[] SendBuffer = Encoding.Unicode.GetBytes(a[0]);
1
+ </>string[] a = { "123", "456" };byte[] SendBuffer = Encoding.Unicode.GetBytes(a[0]);
2
2
 
3
3
 
4
4
 
5
5
  string A = new string(Encoding.Unicode.GetString(SendBuffer).ToCharArray());
6
6
 
7
- Console.WriteLine(A);
7
+ Console.WriteLine(A);</>
8
8
 
9
9
 
10
10
 
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- string[] a = { "123", "456" };
17
+ </>string[] a = { "123", "456" };
18
18
 
19
19
  for (int i = 0; i < a.Length; i++)
20
20
 
@@ -26,7 +26,7 @@
26
26
 
27
27
  Console.WriteLine(A);
28
28
 
29
- }
29
+ }</>
30
30
 
31
31
  にすれば"123"と"456"が表示できるのはわかります。
32
32
 
@@ -36,13 +36,13 @@
36
36
 
37
37
 
38
38
 
39
- string[] a = { "123", "456" };
39
+ </>string[] a = { "123", "456" };
40
40
 
41
41
  byte[] SendBuffer = Encoding.Unicode.GetBytes(a[a.Length]);
42
42
 
43
43
  string A = new string(Encoding.Unicode.GetString(SendBuffer).ToCharArray());
44
44
 
45
- Console.WriteLine(A);
45
+ Console.WriteLine(A);</>
46
46
 
47
47
 
48
48