Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
408 views
in Technique[技术] by (71.8m points)

c# - Generic variadic parameters

From dahlbyk answer to this question : Map two lists into a dictionary in C# , Leppie wrote this comment:

Pity there is a need for a Zip method. If only more statically typed languages would support generic variadic parameters, Select would handle this (like map in Scheme). – leppie

What does that mean? (I don't know Scheme) :)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

He means, that if C# would support dynamic number or arguments (variadic, params) which are all of a different generic type, there wouldn't be a need for a Zip method, because it could be covered by Select.

I don't know if this is true, just interpreting the sentence ...

Edit:

I just think that he means a variable number of generic types (which is in fact only useful in combination with a variable number of method arguments), like this:

void Foo<params T>(params T[] args)

Foo(true, 7, "hello");

Just think about the many declarations of Action<...> and Func<...>.

By the way, when you are not sure about a comment, why not simply asking him?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...