Jump to content
Tuts 4 You

Base..ctor


SameerRaj

Recommended Posts

public Class28()
    {
        Class2.XRoAsQdzvBk9W();
        this.string_0 = "";
        this.string_1 = "0";
        this.string_2 = "0";
        this.string_3 = "";
        this.string_4 = "";
  line 8 -  base..ctor(); error -identifier expexted
    }

how to remove the error at  line 8 and 

basicaly i have decompile a file and trying to rebuild a proggram but not able to clearly know how to remove this err actually why here method base..ctor is being called?

Link to comment

The base class of Class28 is being called. Generally that would look like:

public class Class28 : public SomeOtherClass
{
    public Class28()
        : base()
    {
    }
}

 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...