.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
public class IndexerAccessorParameterNames |
|
{ |
|
public int this[int x, int y] { |
|
get { |
|
return x; |
|
} |
|
set { |
|
} |
|
} |
|
|
|
private int Get(int i) |
|
{ |
|
return i; |
|
} |
|
|
|
public void Use() |
|
{ |
|
this[y: Get(1), x: Get(2)] = 3; |
|
} |
|
}
|
|
|