Kayıtlar

Sunucu üzerinde anlık bağlantıyı görmek istersek

netstat -an|find /c /v  "ok"

Resim dosylarını runtime olarak çevirmek için servis

http://proxy.boxresizer.com/convert?resize=462x338&source=[imagepath]

Binary resim dosyasını fiziksel hale getirmek için

var fs = new BinaryWriter ( new FileStream ( @"C:\\tmp\\" + filename + ".ico" , FileMode . Append , FileAccess . Write )); fs . Write ( imageByteArray ); fs . Close ();

C# ile dns ip'ye göre filtreleme yapmak

Kod parçacığı public string ipx() { string ip = Request.ServerVariables["remote_host"]; return ip; }

C# txt dosyasını okumak istersek

Txt dosyasını c# ile okumak istersek // Create a new WebClient instance. WebClient myWebClient = new WebClient(); // Download home page data. Console.WriteLine("Accessing {0} ...", uriString); // Open a stream to point to the data stream coming from the Web resource. Stream myStream = myWebClient.OpenRead(uriString); Console.WriteLine("\nDisplaying Data :\n"); StreamReader sr = new StreamReader(myStream); Console.WriteLine(sr.ReadToEnd()); // Close the stream. myStream.Close();

C# yazarak iphone uygulaması geliştirmek

Xamarin Öncelikle scott hanselmanın konu hakkındaki videosunu izleyin http://xamarin.com/evolve/2013#session-umfpnw90c9 Sonra bu platformu kullanarak iphone uygulamasının nasıl geliştirileceğine bakın http://xamarin.com/

Mobil frameworkler hangi platformları destekliyor?

Cross platform mobil framework seçerken hangi platformun hangi özellikleri desteklediğini görmek isterseniz property cross sitesi bu bilgileri size veriyor. http://propertycross.com/