本文介绍了请看下面的问题,我是C#的新手的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您会收到一组数字和一组单词,其中一些可能是整数的文本表示返回所有数字的集合

和所有字符串也是数字,如果字符串不是整数,在其位置插入0。

public static IEnumerable< int> MergeWherePossible(IEnumerable< int> number,IEnumerable< string> words)

{



}



我尝试了什么:



我无法访问我在工作电脑上的尝试

You're given a collection of numbers, and a collection of words, some of which may be textual representations of integers Return a collection of all numbers
and all strings which are also numbers, if the string is not an integer, insert 0 in its place.
public static IEnumerable<int> MergeWherePossible(IEnumerable<int> numbers, IEnumerable<string> words)
{

}

What I have tried:

I can not access the attempts i made on my work pc

推荐答案




这篇关于请看下面的问题,我是C#的新手的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 15:26