You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since vb.net is not case sensitive it throws 'PlannerChecklistItem' is ambiguous in 'Microsoft.Graph.Models' namespace
Expected behavior
If those two classes had different names, we could use them in vb.net
How to reproduce
Create a vb.net project and install Microsoft.Graph nuget. Try to instanciate a PlannerChecklistItem variable:
Dim checklistItem As New PlannerChecklistItem
You will see the error then.
SDK Version
5.58.0
Latest version known to work for scenario above?
No response
Known Workarounds
Dim nameOfPlannerChecklistItem As String = "Microsoft.Graph.Models.PlannerChecklistItem, Microsoft.Graph"
Dim typeOfPlannerChecklistItem As Type = Type.GetType(nameOfPlannerChecklistItem)
Dim checklistItem As Object = Activator.CreateInstance(typeOfPlannerChecklistItem)
Debug output
Click to expand log
```
</details>
### Configuration
_No response_
### Other information
_No response_
The text was updated successfully, but these errors were encountered:
Describe the bug
Since vb.net is not case sensitive it throws 'PlannerChecklistItem' is ambiguous in 'Microsoft.Graph.Models' namespace
Expected behavior
If those two classes had different names, we could use them in vb.net
How to reproduce
Create a vb.net project and install Microsoft.Graph nuget. Try to instanciate a PlannerChecklistItem variable:
Dim checklistItem As New PlannerChecklistItem
You will see the error then.
SDK Version
5.58.0
Latest version known to work for scenario above?
No response
Known Workarounds
Debug output
Click to expand log
```The text was updated successfully, but these errors were encountered: