15 lines
261 B
C#
15 lines
261 B
C#
|
// CS1657: Cannot pass `i' as a ref or out argument because it is a `foreach iteration variable'
|
||
|
// Line: 9
|
||
|
|
||
|
class E
|
||
|
{
|
||
|
public E (int[] args)
|
||
|
{
|
||
|
foreach (int i in args)
|
||
|
Init (ref i);
|
||
|
}
|
||
|
|
||
|
void Init (ref int val) {}
|
||
|
|
||
|
}
|