예제 #1
0
파일: GSM.cs 프로젝트: pecsi1009/CSarp
        //<methods - (4), (9)>
        public void PrintGSMParam(string model, string manufacturer, double price, string owner)
        {
            GSM myGsm = new GSM("5530", "Nokia", 100, "Petya");

            Console.WriteLine(myGsm.ToString());
        }
예제 #2
0
파일: GSM.cs 프로젝트: pecsi1009/CSarp
 //<methods - (4), (9)>
 public void PrintGSMParam(string model, string manufacturer, double price, string owner)
 {
     GSM myGsm = new GSM("5530", "Nokia", 100, "Petya");
     Console.WriteLine(myGsm.ToString());
 }