Örnek Bir Bolum Otomosyonu Tablosu E-R Diyaramıdır.SqlServer de yapılmıstır.Bir fakultenın bolum otomosyonu için ornektir.Eksik gordugunuz noktaları bizimle paylasırsanız daha guzel veri tabanı tabloları ekleyebiliriz.
ProperyGridler bir classa ait özelliklerin gösterilmesi için DevExpressin en begendigim toollarından birisidir. Öncelikle property leri tuttugumuz classı olusturalım. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace PropertyGridExample { public class PropertyClass { [System.ComponentModel. Category ( "Person Properties" ), DisplayName ( "Name" )] public string Name { get ; set ; } [System.ComponentModel. Category ( "Person Properties" ), DisplayName ( "Number" )] public string Number { get ; set ; } ...
C# da Consol Application da Socket yardımıyla Server Client uygulamamız SERVER KISMI namespace Server { class Program { static void Main(string[] args) { //Dinlenecek Port TcpListener tcpListener = new TcpListener(1234); tcpListener.Start(); while (true) { Socket socket = tcpListener.AcceptSocket(); if (socket.Connected) { Console.WriteLine("Client Baglandı"); NetworkStream networkStre...
Yorumlar
Yorum Gönder