To work in an environment where there is an opportunity of self-assessment and self-improvement of Software Development Skill both in individual and group based work that will ultimately lead to the further development of an exclusive career in the programming area. I am a Microsoft certified developer.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HelloWorldInWindowsForm
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void showButton_Click(object sender, EventArgs e)
{
string firstName = firstNameTextBox.Text;
string lastName = lastNameTextBox.Text;
string fullName = firstName + " " + lastName;
fullNameTextBox.Text = fullName;
//MessageBox.Show("Hi, " + firstName + " Hello world in C#");
}
}
}
To work in an environment where there is an opportunity of self-assessment and self-improvement of Software Development Skill both in individual and group based work that will ultimately lead to the further development of an exclusive career in the programming area. I am a Microsoft certified developer. More
No comments:
Post a Comment