چک کننده ایمیل
برای این کار اول یه Textbox , Button روی فرمتون قرار بدید و کد زیر رو در رویداد دکمه بنویسید
کد:
using System;
using System.Windows.Forms;
using System.Text.RegularExpressions;
namespace Emailchecker
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
//Regular Expression
Regex regex1 = new Regex("^[a-zA-Z]+[a-zA-Z0-9]+[[a-zA-Z0-9-_.!#$%'*+/=?^]{1,20}@[a-zA-Z0-9]{1,20}.[a-zA-Z]{2,3}$");
//This function will check whether the expression is right or not.
if (!regex1.IsMatch(textBox1.Text))
{
MessageBox.Show("Your email address format is not correct!", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
MessageBox.Show("Congratulations Your email address format is correct!", "CORRECT", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
}
}
}
}
اینم از سری فیبوناچی که یکی از دوستان پرسیده بودن میزام همینجا سوالی بود در تاپیک سوالو جواب ها بپرسید
کد:
using System;
namespace Fibonacci
{
class Program
{
public static int Fibonacci(int n)
{
int a = 0;
int b = 1;
for (int i = 0; i < n; i++)
{
int temp = a;
a = b;
b = temp + b;
}
return a;
}
static void Main()
{
for (int i = 0; i < 15; i++)
{
Console.WriteLine(Fibonacci(i));
}
Console.ReadLine();
}
}
}
0
1
1
2
3
5
8
13
21
34
55
89
144
233
377