Cannot convert type System.Collections.Generic.KeyValuePair<string,string>' to System.Collections.DictionaryEntry' #40
Labels
No labels
bug
enhancement
high priority
low priority
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
andyburke/UnityHTTP#40
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Assets/Plugins/UnityHTTP-master/src/Request.cs(80,13): error CS0030: Cannot convert type
System.Collections.Generic.KeyValuePair<string,string>' toSystem.Collections.DictionaryEntry'Fixed it by replacing:
foreach ( DictionaryEntry entry in form.headers )for:
foreach ( KeyValuePair<string, string> entry in form.headers )BTW: Why is this library overwriting JSON class?