0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

.net framework って何

Last updated at Posted at 2019-05-08

*19/05/09 各所伝わりにくい部分を追記修正

.
.NET Framework | IT用語辞典 | 大塚商会
https://www.otsuka-shokai.co.jp/words/dot-net-framework.html
「分かりそう」で「分からない」でも「分かった」気になれるIT用語辞典
https://wa3.i-3-i.info/word13559.html

..???

ずばり

これ↓

kouiuno.csharp
Console.WriteLine();

例として上のやつがそうなんだけど

中身の処理がこういう感じになってて

 public static void WriteLine()
 {
   Out.WriteLine();
 }

writeLine ってやるだけで色んな処理をやってくれるって事らしい
仕組み的な事っぽい

コード引用元:https://referencesource.microsoft.com/#mscorlib/system/console.cs,748bde83a8b838d8

つまるところ

こういうコードを実行すると

kakuyo.csharp
kakuyo(1,2,3);

こういう結果が出るとして

1
2
3

別の所でこんな感じのコードを保持しているからその結果が出ると

kakuyo.csharp
public static void kakuyo(int i,int j,int k)
{
  system.console.writeline(i.tostring());
  system.console.writeline(j.tostring());
  system.console.writeline(k.tostring());
}

(上のは自分で用意したヤツだけど)
それが.net frameworkを入れると、こういうノリのがどっかに用意されてると

つまりはメソッドだね

.
.
ちなみにページ上部のわかりそうで~のサイトほんま判りやすいから参考にしようね

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?