Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace WindowsFormsApplication1
  8. {
  9.     class Contact
  10.     {    
  11.         public string FirstName { get; private set; }
  12.             public string LastName { get; private set; }
  13.             public string PhoneNumber { get; private set; }
  14.  
  15.             public Contact(string FirstName, string LastName, string PhoneNumber) //Dessa kan inte ha samma namn som egenskaperna
  16.         {
  17.             FirstName = firstname; osv osv!
  18.         }
  19.        
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement