Ejemplo n.º 1
0
		public void IndicesOfAny_ParamsValuesNull ()
		{
			IEnumerable<int> s = new[]{1};
			int[]            v = null;
			s.IndicesOfAny (v);
		}
Ejemplo n.º 2
0
		public void IndicesOfAny_ValuesNull ()
		{
			IEnumerable<int> s = new[]{1};
			IEnumerable<int> v = null;
			s.IndicesOfAny (v);
		}