Spell Check in C#
Interoperability in C# Spell Checking. This is Word Spell Checker which enable in C# for Spelling Check we use this in Notepad in C#.
Click Here to Download Its Program
Downlaod Lecture of APTECH ACCP PRO Course Batch of Aptech NN 1207G1..
ILDasm
and other metadata-reading tools.static
.using System; class Program { enum Importance { None, Trivial, Regular, Important, Critical }; static void Main() { // 1. Importance value = Importance.Critical; // 2. if (value == Importance.Trivial) { Console.WriteLine("Not true"); } else if (value == Importance.Critical) { Console.WriteLine("True"); } } }
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package gettersetter;
/**
*
* @author asp
*/
public class Student {
int id,age;
String name;
public int getid(){
return id;
}
public String getname(){
return name;
}
public int getage(){
return age;
}
public void setid(int i){
id=i;
}
public void setname(String n){
name=n;
}
public void setage(int a){
age=a;
}
}