C#にはこのインタフェースと同等の機能がありますか?Java 8のjava.util.function.Consumer <>のC#に相当するものは何ですか?
例:
Consumer<Byte> consumer = new Consumer<>();
consumer.accept(data[11]);
私はのFunc <周りを検索しました
>とアクション<>が、私はわかりません....
Consumer.acceptの元のJavaコード()インタフェースはかなりありますシンプル..しかし、私のため.. :-(
void accept(T t);
/**
* Returns a composed {@code Consumer} that performs, in sequence, this
* operation followed by the {@code after} operation. If performing either
* operation throws an exception, it is relayed to the caller of the
* composed operation. If performing this operation throws an exception,
* the {@code after} operation will not be performed.
*
* @param after the operation to perform after this operation
* @return a composed {@code Consumer} that performs in sequence this
* operation followed by the {@code after} operation
* @throws NullPointerException if {@code after} is null
*/
default Consumer<T> andThen(Consumer<? super T> after) {
Objects.requireNonNull(after);
return (T t) -> { accept(t); after.accept(t); };
}
これは、Javaコードであり、我々はC#のプログラマーであり、このインターフェースは、私たちに簡単ではありません。)WAHTをこのコスマーナは何をしますか? –
1つのパラメータを取り、値を返さないデリゲート型はすべて候補になります。 'Action'がその一つです。 –
デニスさんありがとうございます。 –