EditIntroduction
The Empty operator returns an empty sequence of a given type.
EditMethod Signatures
public static IEnumerable<TResult> Empty<TResult>()
EditExceptions
None.
EditPseudo-Code
Return
new TResult[0];EditLoop Count
None. Static generation method.
EditCode Samples
TODO:Needs code sample.