Changes between Version 1 and Version 2 of ClassModifier

Show
Ignore:
Author:
edrishn (IP: 207.7.108.244)
Timestamp:
01/08/07 23:45:41 (4 years ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ClassModifier

    v1 v2  
    11In java a class can be static. ''''''static'''''' modifier should be removed from class in C#. 
    22 
    3  
    4  
    53[Java] 
    6  
    74{{{ 
    8  
    95#!c 
    10  
    116private static class Test 
    12  
    137{ 
    14  
    158} 
    16  
    179}}} 
    1810 
    19  
    20  
    2111[C#] 
    22  
    2312{{{ 
    24  
    2513#!C# 
    26  
    2714private class Test 
    28  
    2915{ 
    30  
    3116} 
    32  
    3317}}} 
    34