Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、Java の次の 3 行に対応する C# のコードは何ですか
import java.util.Map; import static net.oauth.OAuth.OAUTH_VERIFIER; Collections.<Map.Entry<?, ?>>emptySet()
私の頭の上から:
using System.Linq; using System.Collections.Generic;
Enumerable.Empty<KeyValuePair<Object, Object>>()