OpenGL (Open Graphics Library – Açık grafik kütüphanesi), mevcut OpenGL destekli grafik donanımınızın sağladığı olanaklardan, uygulamalarınızda sonuna kadar faydalanabilmeniz için kullanıcıya, kolay anlaşılabilir ve kullanılabilir fonksiyonlar sağlayan endüstri standartı haline gelmiş bir grafik kütüphanesidir. İsmindeki Açık (Open) kelimesi OpenGL’in açık kaynak kodlu olduğunu değil, ARB (Architecture Review Board – Yapı geliştirme, takip kurulu) olarak adlandırılan ve endüstrinin önde kuruluşları (3DLabs, ATI, NVidia, IBM, Mirosoft, SGI vs.) tarafından geliştirilen, yani bir şirketin tekeli altında olmayan bir kütüphane olduğunu göstermektedir. Mevcut sürümü 1.4 olan kütüphanenin 2. sürümü üzerine çalışmalar ARB tarafından sürdürülmektedir. OpenGL, yine ARB tarafından kütüphanenin yeni sürümüne kadar güncel tutulmasını...
"C#" kategorisindeki yazıları incelemektesiniz.
C# Ile Mp3 çalmak [Kod]
07
May 2011
Kod: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using WMPLauncher; using WMPLib; namespace WindowsApplication1 { /// <summary> /// Summary description for Form1. /// </summary> public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.Button button1; private System.Windows.Forms.MainMenu mainMenu1; private System.Windows.Forms.MenuItem menuItem1; private System.Windows.Forms.MenuItem menuItem2; private System.Windows.Forms.MenuItem menuItem3; private System.Windows.Forms.MenuItem menuItem4; private System.Windows.Forms.MenuItem menuItem5; private System.Windows.Forms.MenuItem menuItem6; private System.Windows.Forms.MenuItem menuItem7; /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.Container components = null; public Form1() { // // Required for Windows Form Designer support // InitializeComponent(); // // TODO: Add any constructor code after InitializeComponent call // }...
Ünlü uyumunu kontrol eden bir çalışma (c#)
07
May 2011
Kod: namespace Buyukunluuyumu { public partial class Form1 : Form { public Form1() { InitializeComponent(); } string[] Harfler = { "aıouAIOU", "eiöüEİÖÜ", "1234567890" }; bool kalinharf, inceharf, sesliharf, rakamlar; private void Form1_Load(object sender, EventArgs e) { } private void button2_Click(object sender, EventArgs e) { txtkelime.Text.Trim(); string bosluksil = txtkelime.Text.Trim(); rakamlar = false; sesliharf= false; kalinharf= false; inceharf= false; if (bosluksil.Length==0) { MessageBox.Show("Lütfen Bir Kelime Giriniz.."); } else { for (int i = 0; i < txtkelime.Text.Length; i++) { if (Harfler[0].IndexOf(txtkelime.Text[i]) != -1) { kalinharf = true; sesliharf = true; } else if (Harfler[1].IndexOf(txtkelime.Text[i]) != -1) { inceharf = true; sesliharf...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using yeni = System.Threading.Thread; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] Kelime1=new string[5]; string yed; for (int i = 0; i < Kelime1.Length; i++) { Console.WriteLine(i+1 +". Kelimeyi giriniz"); Kelime1[i]=Console.ReadLine(); } for (int i = 0; i < Kelime1.Length; i++) { for (int j = i + 1; j < Kelime1.Length; j++) { if (String.Compare(Kelime1[i], Kelime1[j]) > 0) { yed = Kelime1[i]; Kelime1[i] = Kelime1[j]; Kelime1[j] = yed; } } } for (int i = 0; i < Kelime1.Length; i++) { Console.WriteLine(Kelime1[i]); } Console.ReadLine(); } } }
C# N Adet Sayıdan En Büyük ve En Küçük..
07
May 2011
static void Main(string[] args) { int max = 0, min = 0; Console.Write("Kaç Adet Sayı Girmek İstiyorsunuz: "); byte adet = byte.Parse(Console.ReadLine()); for (int i = 1; i <= adet; i++) { Console.Write("{0}. Sayıyı Giriniz…………….: ", i); int sayi = int.Parse(Console.ReadLine()); if (i == 1) { max = sayi; min = sayi; } else if (sayi > max) { max = sayi; } else if (sayi<min) { min = sayi; } } Console.WriteLine("nGirilen En Büyük Sayı…………: " + max); Console.WriteLine("Girilen En Kücük Sayı…………: " + min); Console.ReadLine(); } Bol program yazmalı günler :]


