How to customize classes and how to use custom classes
Source: Internet
Author: User
1. First write a class file, such as Hello. cs.
Using System;
Namespace myclass. SayHello
{
Public class TSayHello
{
String name;
Public TSayHello ()
{
This. name = "World ";
}
Public String Say ()
{
Return ("Hello," + this. name + "! ");
}
}
}
2. Compile the custom class as a dll file
Csc.exe/target: library/r: System. dll Hello. cs
3. copy the generated Hello. dll to the Bin directory of the root directory of the website. If it is a virtual directory, copy it to the Bin directory of the changed virtual directory.
4. Reference a custom class in a program
Using System;
Using System. Web. UI. WebControls;
Using myclass. SayHello;
// Reference the namespace of the custom class
Namespace myClasses
{
Public class ourgame: System. Web. UI. Page
{
// Declare the controls that will appear in the Web Form
Public Label LblSayHello;
Private void Page_Load (object sender, System. EventArgs e)
{
TSayHello myhello = new TSayHello ();
// Create a custom class object
LblSayHello. Text = myhello. Say ();
}
}
}
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service