Tag Archives: C#

How to read embedded resource text file

You can use the Assembly.GetManifestResourceStream Method: var assembly = Assembly.GetExecutingAssembly(); var resourceName = “MyCompany.MyProduct.MyFile.txt”; using (Stream stream = assembly.GetManifestResourceStream(resourceName)) using (StreamReader reader = new StreamReader(stream)) { string result = reader.ReadToEnd(); } Source

تحت التصنيف Developer, Programming | الوسوم | Comments Off on How to read embedded resource text file

C# : Recolor Rows in Listview row by row

في بعض الأحيان يرغب المبرمج بالتحكم في لون الخلفية للصفوف في Listview بحيث تصبح ألوان الصفوف الفردية مختلفة عن ألوان الصفوف الزوجية، وذلك حتى يمكن تمييز الصفوف عن بعض عند وجود معلومات كثيرة.

تحت التصنيف Developer | الوسوم , , , , | Comments Off on C# : Recolor Rows in Listview row by row

Free ebook: .NET Technology Guide for Business Applications

This guide will help you effectively select the right Microsoft development technologies and approaches for your .NET custom application development, depending on the priorities you have for your application and for your business domain. This guidance does not cover Application … Continue reading

تحت التصنيف Developer | الوسوم , , , , , , , , , | Comments Off on Free ebook: .NET Technology Guide for Business Applications

C# : How Send E-Mail

في بعض الأحيان نحتاج لبرمجة كود لإرسال إيميل من داخل البرنامج الى عنوان ايميل أخر، هذه الفكرة جيدة للقيام ببرمجة برنامج يقوم بإرسال الإيميلات إلى عناوين معينة، أو إرسال إيميل لإبلاغ المبرمج بوجود خطأ برمجي ما، أو كما خطرت ببالي … Continue reading

تحت التصنيف C#, Developer | الوسوم , , , , , | Comments Off on C# : How Send E-Mail

VS2013 is here

الأن يمكنك تحميل اصدارات Visual Studio 2013 للتجربة أو استخدام نسخة Express المجانية من هنا ، أنصح مستخدمي الانترنت داخل ليبيا بعدم تحميل اي اصدارات للحفاظ على حصة الانترنت الشهرية الخاصة بهم 🙂

تحت التصنيف Developer | الوسوم , , , , | Comments Off on VS2013 is here

Get Last Update for WebPage

في بعض الأحيان قد نحتاج لمعرفة اخر تاريخ تم فيه تحديث موقع تم برمجته بالــ (ASP.NET) ولغة (C Sharp) حتى يتأكد المستخدم أن الموقع حديث، ويتذكر المبرمج هل قام بتحديث موقعه وإصلاح أخطاءه أو ليس بعد. الكود التالي يخبرك باخر … Continue reading

تحت التصنيف C#, Developer | الوسوم , , , , | Comments Off on Get Last Update for WebPage