質問するログイン新規登録

質問編集履歴

1

Mainプログラムとメソッド、前回のスレッドを補足

2020/07/05 07:25

投稿

_string
_string

スコア15

title CHANGED
File without changes
body CHANGED
@@ -1,3 +1,5 @@
1
+ ###前回のスレッド
2
+ https://teratail.com/questions/274002#reply-392322
1
3
  ### 前提・実現したいこと
2
4
  GetResponseを正常に動作させたい
3
5
 
@@ -10,6 +12,13 @@
10
12
  ### 該当のソースコード
11
13
 
12
14
  ```c#
15
+ //Mainプログラム
16
+ static void Main()
17
+ {
18
+ string Url = "https://www.google.com/?hl=ja";
19
+ Console.WriteLine(GetHtml(Url));
20
+ }
21
+ //メソッド
13
22
  public string GetHtml(string url)
14
23
  {
15
24
  string Html = "";