In this example link ....
https://stackoverflow.com/a/19737565/2948523
I found some sections like, ~ImprovedClass() ~Inner()
Please help me out what are they ? why and how should I use them in code
class Inner
{
public Inner(IntPtr unkOuter)
{
}
~Inner()
{
}
}
public class ImprovedClass
{
// constructor
public ImprovedClass()
{
}
~ImprovedClass()
{
}
}