Skip to content

ClassModifier

Mehdi Mohammadi edited this page Dec 29, 2013 · 1 revision

In java a class can be static. static modifier should be removed from class in C#.

[Java]

private static class Test
{
}

[C#]

private class Test
{
}
Clone this wiki locally