제목 : 03.1. 변수
    
    
        
            
                | 
                    글번호:
                 | 
                
                 | 
                
                    34
                 | 
            
            
                | 
                    작성자:
                 | 
                
                 | 
                
                    
                        레드플러스
                        
                        
                    
                 | 
            
            
                | 
                    작성일:
                 | 
                
                 | 
                
                    
                        2003/03/31 오후 5:17:00 
                    
                 | 
            
            
            
                | 
                    조회수:
                 | 
                
                 | 
                
                    
                        7395
                    
                 | 
            
            
        
     
 
    
	
	
    
	/*
변수명 짓는 방법 : 헝가리언 표기법 + 파스칼 표기법 + 카멜 표기법
- 이미 만들어져 있는 C#의 키워드(예약어)는 사용하지 못한다.
*/
public class 변수명짓는법
{
    public static void Main()
    {
        int i; 
        int test;
        int inttest;
        int int_test;
        int intTest; //int testNumber;
        string strTest;
        double dblTest;
        object objTest;
        bool blnTest;
        System.Console.WriteLine(i);
    }
}