Search Results

4
votes
4answers
315 views

Why should a .NET struct be less than 16 bytes?

I've read in a few places now that the maximum instance size for a struct should be 16 bytes. But I cannot see where that number (16) comes from. Browsing around the net, I've found …
1
vote

using regions in C# is considered bad practice ?

I don't have enough reputation to post a comment to your question...but I don't see any reference in that article to regions having a performance impact. …
1
vote

How to write my own proxy, anonymizer and host it to help when websites are blocked at work

Sounds like hard work to write your own. One place I worked, I used GoToMyPC to access my machine at home and browse to any blocked sites from t …
1
vote

C#: Downloading video from YouTube

Try this: http://www.codeproject.com/KB/IP/MyDownloader.aspx …
1
vote

How to Compare Values in Array

I think using List<T>.TrueForAll would be a slick approach. http://msdn.microsoft.com/en-us …
0
votes

if objects are passed by reference in c#, what is ref good for then?

What is ref good for? Interview questions, of course. …
2
votes

How to control elements on a asp.net master page from child page

Here's an example of how to communicate with Master Pages from Child Pages. In the master page, create a property for the control you wish to access, say a label called lblUser... …
0
votes

DetailsView Preview mode ?

Not totally clear on what you're asking. If you are looking to inspect or modify data before it is inserted into the table you could look at the DetailsView.ItemInserting E …
1
vote

How can I hide the drop-down arrow of a DataGridViewComboBoxColumn like Visual Studio Properties window?

In the DataGridViewComboBoxColumn, there is a property called DisplayStyle. Set it to Nothing to hide the DropDownButton Further information about the …
2
votes

C#: Argument validation: null/empty strings

You might find this link on Argument validation using attributes and method interception …
0
votes

combo box in datagrid

The easiest way is to use the "Add" method of your ComboBox: // Add item "test" to ComboBox with name comboBox1 comboBox1.Items.Add("test"); …