I want to call a dotnet Enum from VB6.
C# Enum:
public enum grpType
{
personalGroup = 1;
}
I am accessing the c# class/enum through .tlb in the vb6.
But the issue is the enum types. like in vb6 it is showing enum value like
grpType.grpType_personalGroup instead of grpType.personalGroup....
more >>
We are migrating the vb6 projects(few components, rest in vb6 only) to C#.Net
2005.
In this migration process we are facing one big issue with optional
parameter. Actually in C#.Net there is not optional parameter concept . For
that C# introduced 2 concepts like 1)overloading 2)params .
But ...
more >>