Tagged Questions

0
votes
1answer
55 views

Colons in URI possible?

I thought using colons in URIs was "illegal". Then I saw that vimeo.com is using URIs like http://www.vimeo.com/tag:sample. What do you feel about the usage of colons in URIs? How do I make my …
0
votes
4answers
158 views

Inserting Colons into a list of Mac Addresses

I have over 500 MAC addresses and I'm trying to find a simple way to insert colons between every 2 characters.
0
votes
4answers
425 views

Using a colon (:) in a url with ASP.NET/IIS

I'm implementing a custom controller in ASP.NET MVC and really want to be able to use a colon in the urls, so that I can identify class/column names and their values, like so: …
4
votes
4answers
1k views

VB.NET If Statement and the Colon

Here is an interesting piece of code that my fellow team members were just having a slightly heated discussion about... Dim fred As Integer If True Then fred = 5 : fred = 3 : fred = 6 Else fred …
3
votes
2answers
657 views

What is the meaning of “..::.” in C#?

I saw this signature on the ListView class: public ListView..::.ListViewItemCollection Items { get; } When I saw that, "What?!" I searched "dot dot colon colon dot" and "..::." on Google with no …