i am doing a conversion from JAVA to c#
in my java i have this class
public class Axe extends ByteArray {
}
By right i think should be in this way ,
public class Axe : ByteArray {
}
but the problem is in c# it does not have the ByteArray for me to extend
Thank you