I got something strange into VB.NET, never notice before...
I have a class in VB.NET having a property with parameter and I want to use that property in other C# Class by making object of VB.NET class but class object not showing that property, could any one tell me whether I can access that property into C# or not.
- If yes, how?
- If no, what does CLR mean?
Here is my code...
Public Property AsString(ByVal name As String) As String
Get
//Some code
End Get
Set(ByVal value As String)
//Some code
End Set
End Property
Note: I can not change VB.NET code as it is compiled DLL.
Thanks in Advance