匿名の方法とは
3254 ワード
匿名メソッドとは、あるコードブロックを委任パラメータとして別のメソッドに渡すことを意味する.
匿名メソッドは、メソッド内の変数とクラス内のメンバーにアクセスできます.
匿名メソッドを使用すると、固有のメソッドを作成する必要がなくなり、インスタンス化依頼に必要な符号化オーバーヘッドが減少します.
匿名メソッドは、メソッド内の変数とクラス内のメンバーにアクセスできます.
匿名メソッドを使用すると、固有のメソッドを作成する必要がなくなり、インスタンス化依頼に必要な符号化オーバーヘッドが減少します.
using
System;
using
System.Collections.Generic;
using
System.Text;
using
System.Collections;
namespace
ConsoleApplication1
{
public
class
Program
{
public
delegate
string
gettypername(
string
name);
static
void
Main(
string
[] args)
{
string
aaaa
=
"
11
"
;
gettypername name
=
delegate
(
string
t)
{
t
+=
"
"
;
return
t;
};
Console.WriteLine(name);
Console.ReadLine();
}
}
}