Skip to content

Conversation

@jwmcgettigan
Copy link

… prevent naming conflict with the NetworkConnection class.

This circumvents the need to utilize an alias to to prevent the following compiler error:
“NetworkConnection” is ambiguous between NetworkConnection and NetworkConnection.

In essence, this change allows for:

using NetworkConnections;
var conn = new NetworkConnection();

instead of:

using NC = NetworkConnection;
var conn = new NC.NetworkConnection();

… prevent naming conflict with the NetworkConnection class.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant