ASPX.CS C# - How to pass a parameters by reference (byref)
int Count = 0;
IncCount(ref Count);
Response.Wrire(Count);
private void IncCount(ref int Count)
{
Count++;
}
{moscomment}
| < Prev | Next > |
|---|
| Feb.10 |
|
| Feb.10 |
|
| Dec.09 |
|
| Nov.09 |
|
| Nov.09 |
5185 |
| Dec.08 |
2576 |
| Jul.08 |
1334 |
| Feb.08 |
1234 |