S
Sandor Pakh
I'm trying to convert a class to VB.NET code from C#.
public class SomeClassCollection : CollectionBase {
public SomeClass this[int index] {
get {return((SomeClass)List[index]);}
set {List[index] = value;}
}
}
I'm not sure how to convert this. Can't use "Me" on this.
-sandor
public class SomeClassCollection : CollectionBase {
public SomeClass this[int index] {
get {return((SomeClass)List[index]);}
set {List[index] = value;}
}
}
I'm not sure how to convert this. Can't use "Me" on this.
-sandor