public static int add(int a, int b, ref int c)
{
c = a + 2;
return a + b;
}
We can use out and ref,can be called as shown below
int e = add(2, 3, ref d);
Compare Sql Server Table Constraints
13 years ago
0 comments:
Post a Comment