Blogs1 - 10 of 300 recent posts for tag:"c sharp"
22
Nov
2009
Toplama, Çıkarma, Çarpma, Bölme

10 hours ago by admin

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication13 { class Program { static void Main(string[] args) { string islem; Console.WriteLine("Toplama İşlemi İçin \"T\"ye basın"); Console.WriteLine("Çıkarma İşlemi İçin \"Ç\"ye basın"); Conso ...

SEO ARŞİVİ - seoarsivi.com

FileStream StreamReader in C#

14 hours ago by admin

One way to go in a file and read the lines in C# is to use FileStream and StreamReader together, you should always use while loop instead of for loop, otherwise, you will get the error I keep getting for this is: Cannot convert type ‘char’ to ’string’. using System; using System.Collections.Generic; ...

Highub - highub.com

Finding all factors of a given number in C#

15 hours ago by admin

To find all factors of a given number in C# can be done using many different ways. A lean way of doing so is: Loop from 1 to the square root of the number, call the index “i”. if number mod i is 0, add i and number / i to the list of factors. public List Factor(int number) { List factors = new List( ...

Highub - highub.com

Generating code with AJGenesis using NHibernate hbm files

15 hours ago by ajlopez

I was working on generating C# classes, using as starting point .hbm NHibernate mapping files. As usual, I wrote an example with AjGenesis, my open source code generation engine. You can download a first example from my Skydrive: Examples > AjGenesis > NHibernateMappingExample01.zip (the code is in ...

Angel "Java" Lopez on Blog - ajlopez.wordpress.com · Rank: 179,231 · 21 references

19
Nov
2009
Windows Forms – Minimize

3 days ago by Yılmaz Yavuz

Programatik olarak formu minimize etmek için this.WindowState = FormWindowState.Minimized; kodunu formun herhangi bir static olmayan methodunda yazarak işlemi gerçekleştirebiliriz. WindowsState property si formun durumunu Minimize, Maximize etmek yada Normal haline döndrmek için kullanılan property ...

Yılmaz Yavuz - yilmazyavuz.com/yyblog

17
Nov
2009
C# Using Statement – Try / Finally – IDisposable – Dispose() – ...

5 days ago by Neeraj Mathur

While viewing some of the C# code written by a new programmer, I noticed that they lack of calling Dispose() method on SqlConnection and SqlCommand objects. And the dabase code was not placed in try/finally blocks. This coding style is typical newbie style of development that everyone, including mys ...

SOLID.Net - soliddotnet.com

Vote for your Favorite Computer Language!

5 days ago by John Alexander Rowley

What is your favorite computer language? The functionality of Java? The power behind C++? The backside of PHP? Vote now! The poll closes on Monday 24th November so vote quickly! You can select up to two answers and can only vote once so make sure you have made your final decision! Feel free to comme ...

JohnAlexanderRowley.com - johnalexanderrowley.com/blog

13
Nov
2009
Hello World

9 days ago by admin

Ok, dopo aver installato il nostro SDK è proprio ora di fare qualcosa di concreto. Perlomeno, ci proviamo. Per prima cosa apriamo il nostro Visual C# Express (al momento della scrittura uso la versione 2008, liberamente scaricabile dall’indirizzo http://www.microsoft.com/express/vcsharp/). Dal menù ...

the void. - francescomalatesta.net

La Guida del Principiante ad SDL.NET – Guida SDL.NET

9 days ago by admin

titolo originale: “The Absolute Newbie Guide to SDL.NET” Dunque, in questo primo articolo dedicato ad SDL.NET introdurremo qualche informazione relativa al suo funzionamento e qualche dato generico. SDL.NET offre l’accesso ad una libreria multimediale e multipiattaforma, che permette di gestire ad u ...

the void. - francescomalatesta.net

Introduzione – Guida SDL.NET

9 days ago by admin

Ciao a tutti! Se vi trovate qui è perchè, in un modo o nell’altro, siete interessati alla programmazione di videogiochi. Ciò che analizzeremo è una libreria usata proprio per questo scopo: creare videogiochi. Una libreria, nella sua accezione informatica, è un insieme di funzioni di utilità più o me ...

the void. - francescomalatesta.net

Previous1234567