Possible Duplicate:
What does the tilde (~) mean in C#?
What is the meaing of ~ before a method?
I saw this like here:
~myDirect3dClass()
{
}
Possible Duplicate:
What does the tilde (~) mean in C#?
What is the meaing of ~ before a method?
I saw this like here:
~myDirect3dClass()
{
}
That is a Destructor
method of a class. Destructors are used to destruct instances of classes.