<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Разни неща за WEB</title>
	<atom:link href="http://saitove.net/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://saitove.net/blog</link>
	<description>на Биляна Чавдарова</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:19:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Reading from Console</title>
		<link>http://saitove.net/blog/reading-from-console</link>
		<comments>http://saitove.net/blog/reading-from-console#comments</comments>
		<pubDate>Tue, 07 Feb 2012 11:24:27 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/?p=171</guid>
		<description><![CDATA[We use console to read information from the command line We can read: Characters, Strings, Numeral types(after conversion) To read from the console we use the methods Console.Read() and Console.ReadLine() Console.ReadKey() Waits until a combination of keys is pressed. Reads a single character from console or a combination of keys Returns a result of type [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/reading-from-console/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Formatting string</title>
		<link>http://saitove.net/blog/formatting-string</link>
		<comments>http://saitove.net/blog/formatting-string#comments</comments>
		<pubDate>Tue, 07 Feb 2012 09:49:45 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[форматиращ низ]]></category>
		<category><![CDATA[форматиращ стринг]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/?p=154</guid>
		<description><![CDATA[{index[, alignment][:formatString]} Примери: {0,7} &#8211; Означава този аргумент да бъде вкаран 7 позиции на екрана. Ако числото е 25, това означава 5 интервала следвано от 25. Ако искаме да отпечатаме стринг &#8222;Били&#8220; ще получим Били + 3 интервала, защото стринговете по подразбиране се подравняват в ляво. index The zero-based index of the argument whose string [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/formatting-string/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Console Input and Output methods</title>
		<link>http://saitove.net/blog/console-input-and-output-methods</link>
		<comments>http://saitove.net/blog/console-input-and-output-methods#comments</comments>
		<pubDate>Tue, 07 Feb 2012 09:12:38 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/?p=147</guid>
		<description><![CDATA[Input Read(&#8230;) &#8211; reads a single character. Чете само един character, след натискане на Enter ReadKey(&#8230;) &#8211; reads a combination of keys. Чете кой клавиш или клавишна комбинация е натиснат. ReadLine(&#8230;) &#8211; reads a single line of characters Output Write(&#8230;) &#8211; Prnts the specifeid argument on the console. Печата на конзолата. WriteLine(&#8230;) &#8211; Prints specified [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/console-input-and-output-methods/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Function overloading</title>
		<link>http://saitove.net/blog/function-overloading</link>
		<comments>http://saitove.net/blog/function-overloading#comments</comments>
		<pubDate>Thu, 02 Feb 2012 09:44:34 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/?p=142</guid>
		<description><![CDATA[using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { int[] myArray = { 1, 8, 3, 6, 2, 5, 9, 3, 0, 2 }; string[] MyStrArray = { "Menu 1", "Menu 2", "Menu 3", "Menu 4", "Menu 5" }; //Using function PrintOut for printing array [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/function-overloading/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special characters</title>
		<link>http://saitove.net/blog/special-characters</link>
		<comments>http://saitove.net/blog/special-characters#comments</comments>
		<pubDate>Thu, 02 Feb 2012 09:28:14 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/130</guid>
		<description><![CDATA[Among the special characters is also a Unicode character notation for writing any character. Character Meaning Character Meaning \n newline \f form feed \t horizontal tab \a alert sound \v vertical tab \’ single quote \b backspace \” double quote \r carriage return \\ backslash \0 null character \uFFFF Unicode character (4-digit hex number) Escape [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/special-characters/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Тестване за качество на уеб сайт</title>
		<link>http://saitove.net/blog/%d1%82%d0%b5%d1%81%d1%82%d0%b2%d0%b0%d0%bd%d0%b5-%d0%b7%d0%b0-%d0%ba%d0%b0%d1%87%d0%b5%d1%81%d1%82%d0%b2%d0%be-%d0%bd%d0%b0-%d1%83%d0%b5%d0%b1-%d1%81%d0%b0%d0%b9%d1%82</link>
		<comments>http://saitove.net/blog/%d1%82%d0%b5%d1%81%d1%82%d0%b2%d0%b0%d0%bd%d0%b5-%d0%b7%d0%b0-%d0%ba%d0%b0%d1%87%d0%b5%d1%81%d1%82%d0%b2%d0%be-%d0%bd%d0%b0-%d1%83%d0%b5%d0%b1-%d1%81%d0%b0%d0%b9%d1%82#comments</comments>
		<pubDate>Sat, 10 Jul 2010 22:18:45 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[Тестване за качество на уеб сайт]]></category>
		<category><![CDATA[quality]]></category>
		<category><![CDATA[quality testing]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/?p=114</guid>
		<description><![CDATA[Тестовете за качество на уеб сайт измерват неговият дизайн и ползваемост. Качественият и ефективен уебсайт получава висок трафик и page rank. Контролът на качеството съпровожда целият процес на създаване на даден уебсайт, включително и самият дизайн преди той да бъде финализиран. Необходимо е да бъдат включени както клиентите, така и обикновените потребители особено когато става [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/%d1%82%d0%b5%d1%81%d1%82%d0%b2%d0%b0%d0%bd%d0%b5-%d0%b7%d0%b0-%d0%ba%d0%b0%d1%87%d0%b5%d1%81%d1%82%d0%b2%d0%be-%d0%bd%d0%b0-%d1%83%d0%b5%d0%b1-%d1%81%d0%b0%d0%b9%d1%82/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 съвета за първата среща с клиента</title>
		<link>http://saitove.net/blog/10-%d1%81%d1%8a%d0%b2%d0%b5%d1%82%d0%b0-%d0%b7%d0%b0-%d0%bf%d1%8a%d1%80%d0%b2%d0%b0%d1%82%d0%b0-%d1%81%d1%80%d0%b5%d1%89%d0%b0-%d1%81-%d0%ba%d0%bb%d0%b8%d0%b5%d0%bd%d1%82%d0%b0</link>
		<comments>http://saitove.net/blog/10-%d1%81%d1%8a%d0%b2%d0%b5%d1%82%d0%b0-%d0%b7%d0%b0-%d0%bf%d1%8a%d1%80%d0%b2%d0%b0%d1%82%d0%b0-%d1%81%d1%80%d0%b5%d1%89%d0%b0-%d1%81-%d0%ba%d0%bb%d0%b8%d0%b5%d0%bd%d1%82%d0%b0#comments</comments>
		<pubDate>Sun, 15 Nov 2009 16:50:11 +0000</pubDate>
		<dc:creator>Биляна</dc:creator>
				<category><![CDATA[Работа с клиенти]]></category>

		<guid isPermaLink="false">http://saitove.net/blog/?p=51</guid>
		<description><![CDATA[Универсални съвети за хора предлагащи услуги свързани със сайтове и изводи до които съм достигнала благодарение на моят опит. Моля ако някой има забележки или иска да допълни нещо да напише коментар. Предразположете клиента към вас. Предложете нещо за пиене, място за неговият багаж евентуално, удобно място за седене с добра видимост към вашят монитор, [...]]]></description>
		<wfw:commentRss>http://saitove.net/blog/10-%d1%81%d1%8a%d0%b2%d0%b5%d1%82%d0%b0-%d0%b7%d0%b0-%d0%bf%d1%8a%d1%80%d0%b2%d0%b0%d1%82%d0%b0-%d1%81%d1%80%d0%b5%d1%89%d0%b0-%d1%81-%d0%ba%d0%bb%d0%b8%d0%b5%d0%bd%d1%82%d0%b0/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

