<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	C# &#8211; Değişken Sayıda Parametre Alan Metotlar yazısına yapılan yorumlar	</title>
	<atom:link href="https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2023 07:45:35 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		Yazar: enees		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-2564</link>

		<dc:creator><![CDATA[enees]]></dc:creator>
		<pubDate>Wed, 25 Jan 2023 07:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-2564</guid>

					<description><![CDATA[list tipinde string olarak parametre alan bir method daha yazıcam ama bu method bu 1m adet listeyi alıp tüm string ifadeleri tersten yazacak nasıl yaparım]]></description>
			<content:encoded><![CDATA[<p>list tipinde string olarak parametre alan bir method daha yazıcam ama bu method bu 1m adet listeyi alıp tüm string ifadeleri tersten yazacak nasıl yaparım</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Hasan		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-2483</link>

		<dc:creator><![CDATA[Hasan]]></dc:creator>
		<pubDate>Fri, 18 Mar 2022 11:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-2483</guid>

					<description><![CDATA[Substring metodunun 2 parametreli versiyonunu kendiniz yazın.
(Bu metot için string veri de parametreden gönderilsin ve hiçbir System sınıfından string metot kullanılmasın.) hocam buunu nasıl çözebiliriz.]]></description>
			<content:encoded><![CDATA[<p>Substring metodunun 2 parametreli versiyonunu kendiniz yazın.<br />
(Bu metot için string veri de parametreden gönderilsin ve hiçbir System sınıfından string metot kullanılmasın.) hocam buunu nasıl çözebiliriz.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Serdar Yılmaz		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-1705</link>

		<dc:creator><![CDATA[Serdar Yılmaz]]></dc:creator>
		<pubDate>Tue, 08 Dec 2020 21:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-1705</guid>

					<description><![CDATA[&lt;a href=&quot;https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-1699&quot;&gt;Musab&lt;/a&gt; yorumuna yanıt olarak.

virgulKontrolu metodu iki parametre almakta. Ancak textOdeme_KeyPress metodu içerisinde virgulKontrolu metodunu çağırırken bu parametreleri geçmediğin için hata verecektir. 

private void textOdeme_KeyPress(object sender, KeyPressEventArgs e)
{
    virgulKontrolu(sender,e);
}

Şeklinde metodu çağırabilirsin.]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-1699">Musab</a> yorumuna yanıt olarak.</p>
<p>virgulKontrolu metodu iki parametre almakta. Ancak textOdeme_KeyPress metodu içerisinde virgulKontrolu metodunu çağırırken bu parametreleri geçmediğin için hata verecektir. </p>
<p>private void textOdeme_KeyPress(object sender, KeyPressEventArgs e)<br />
{<br />
    virgulKontrolu(sender,e);<br />
}</p>
<p>Şeklinde metodu çağırabilirsin.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Musab		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-1699</link>

		<dc:creator><![CDATA[Musab]]></dc:creator>
		<pubDate>Sun, 06 Dec 2020 17:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-1699</guid>

					<description><![CDATA[merhaba hocam. Aşağıdaki gibi bir kod parçası yazdırıyorum. Fakat hata alıyorum. Hatanın kaynağını bulmadım. Yarıdmcı olabilir misiniz. Teşekkürler.

  private void textOdeme_KeyPress(object sender, KeyPressEventArgs e)
        {
            virgulKontrolu();
        }
        private void virgulKontrolu(object sender, KeyPressEventArgs e)
        {
            if ((int)e.KeyChar &#062;= 47 &#038;&#038; (int)e.KeyChar &#060;= 57)
            {
                e.Handled = false;
              

            }

            else if ((int)e.KeyChar == 8)
            {
                e.Handled = false;
            }

            else if ((int)e.KeyChar == 44 &#124;&#124; (int)e.KeyChar == 127)
            {
                e.Handled = false;
            }
            else
            {
                e.Handled = true;
            }
          
            
        }]]></description>
			<content:encoded><![CDATA[<p>merhaba hocam. Aşağıdaki gibi bir kod parçası yazdırıyorum. Fakat hata alıyorum. Hatanın kaynağını bulmadım. Yarıdmcı olabilir misiniz. Teşekkürler.</p>
<p>  private void textOdeme_KeyPress(object sender, KeyPressEventArgs e)<br />
        {<br />
            virgulKontrolu();<br />
        }<br />
        private void virgulKontrolu(object sender, KeyPressEventArgs e)<br />
        {<br />
            if ((int)e.KeyChar &gt;= 47 &amp;&amp; (int)e.KeyChar &lt;= 57)<br />
            {<br />
                e.Handled = false;</p>
<p>            }</p>
<p>            else if ((int)e.KeyChar == 8)<br />
            {<br />
                e.Handled = false;<br />
            }</p>
<p>            else if ((int)e.KeyChar == 44 || (int)e.KeyChar == 127)<br />
            {<br />
                e.Handled = false;<br />
            }<br />
            else<br />
            {<br />
                e.Handled = true;<br />
            }</p>
<p>        }</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Ayşenur		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-1332</link>

		<dc:creator><![CDATA[Ayşenur]]></dc:creator>
		<pubDate>Sun, 26 Jan 2020 14:02:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-1332</guid>

					<description><![CDATA[Teşekkür ediyoruz, gerçekten çok güzel ve anlaşılır hazırlanmış dökümanlar. Gereksiz bilgi yığını da yok]]></description>
			<content:encoded><![CDATA[<p>Teşekkür ediyoruz, gerçekten çok güzel ve anlaşılır hazırlanmış dökümanlar. Gereksiz bilgi yığını da yok</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Osman		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-1170</link>

		<dc:creator><![CDATA[Osman]]></dc:creator>
		<pubDate>Tue, 03 Dec 2019 08:01:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-1170</guid>

					<description><![CDATA[adamsın hocam çok iyi anladım senin sayende sınavı geçtim]]></description>
			<content:encoded><![CDATA[<p>adamsın hocam çok iyi anladım senin sayende sınavı geçtim</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: Serdar Yılmaz		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-859</link>

		<dc:creator><![CDATA[Serdar Yılmaz]]></dc:creator>
		<pubDate>Thu, 24 Jan 2019 22:10:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-859</guid>

					<description><![CDATA[&lt;a href=&quot;https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-858&quot;&gt;gülsüm&lt;/a&gt; yorumuna yanıt olarak.

Merhaba,

Olumlu bildiriminiz için teşekkür ederim. Yayınlayacağım diğer içerikler de yorumunuzu dikkate alacağım. ]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-858">gülsüm</a> yorumuna yanıt olarak.</p>
<p>Merhaba,</p>
<p>Olumlu bildiriminiz için teşekkür ederim. Yayınlayacağım diğer içerikler de yorumunuzu dikkate alacağım. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Yazar: gülsüm		</title>
		<link>https://www.srdrylmz.com/c-degisken-sayida-parametre-alan-metotlar/#comment-858</link>

		<dc:creator><![CDATA[gülsüm]]></dc:creator>
		<pubDate>Thu, 24 Jan 2019 15:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.srdrylmz.com/?p=2954#comment-858</guid>

					<description><![CDATA[anlatımınız çok iyi ancak program çıktılarını da görebilirsek daha iyi olur]]></description>
			<content:encoded><![CDATA[<p>anlatımınız çok iyi ancak program çıktılarını da görebilirsek daha iyi olur</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
