-
-
Save zivanovicb/e605ca609b34c3c0afcfe556fdda33dc to your computer and use it in GitHub Desktop.
Interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace WindowsFormsApplication21 | |
{ | |
interface Interfejs | |
{ | |
// Ovo nek ti bude neka definicija: | |
// Interfejs je ugovor koji govori klasi koje metode mora da implementira. Klasa moze da sadrzi vise interfejsa. | |
double povrsina(); | |
void ispis(); | |
string stringcina(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment