here is the code :
class Operation
{
public static int[,] addition(int x, int y, int z, int c)
{
{
public static int[,] addition(int x, int y, int z, int c)
{
//some of my code
}
}
I want to call it into main and show all off the value inside that class. Could you help me to solve this

Bikesh SrivastavaPosted Sep 8, 2016, 3:29 AM
ketan borsdiyaPosted Sep 8, 2016, 3:27 AM
Bhuvan PandeyPosted Sep 8, 2016, 12:24 AM
Hi,
Classes and structs that are declared directly within a namespace (in other words, that are not nested within other classes or structs) can be either public or internal. Internal is the default if no access modifier is specified.
Hussain PatelPosted Sep 8, 2016, 12:01 AM
Tapan PatelPosted Sep 7, 2016, 4:53 PM
Amit GuptaPosted Sep 7, 2016, 3:25 PM