ICR

1,868
Reputation
93 views

Registered User

Name ICR
Member for 1 year
Seen 43 mins ago
Website
Location UK
Age 21
I am a second year Computer Science who has been programming for 8 years in a variety of languages spanning from BASIC to C#.
26m
comment Random playlist algorithm
Trouble with this is that execution time is unpredictable. It is possible it will keep randomly choosing array items that are true for a very long time.
56m
comment How to use regex in a c#, specifically getting the data inside a double quote?
Do you want to collapse whitespace mid-string (i.e. turn "this string" into "this string") or do you just want to trim it?
Oct
9
asked Scala unexpectedly not being able to ascertain type for expanded function
Oct
8
asked Adding registry key in C# shows when I read it back, but not in regedit
Sep
24
accepted How do I Iterate controls in a windows form app?
Sep
24
comment Return False if variable isn’t boolean
tsk tskm, magic constants. That's what Boolean.TrueString is for.
Sep
24
answered How do I Iterate controls in a windows form app?
Sep
24
comment C# disable the TAB
Is there any reason you are explicitly moving focus when tab is pressed rather than relying on the default mechanism and tab order?
Sep
22
accepted c# - ref modifier for …reference types
Sep
21
answered How to avoid a stack overflow?
Sep
21
answered c# - ref modifier for …reference types
Sep
21
comment Check if relative URI exists
Is this from within an ASP.Net website?
Sep
21
comment Merging two objects containing properties into one object
I'm guessing you want to be able to do this given any two arbitrary objects, rather than just doing foo = new { one = foo.one, three = bar.three }
Sep
21
answered Unexplained delay when assigning a string to an SPListItem field
Sep
21
comment When to make a form flash and stop flashing?
You aren't using the Focus() method rather than the Focused property to check focus are you?
Sep
21
answered When to make a form flash and stop flashing?
Sep
21
comment Dropdown of Font names in C#.Net
N.B. This doesn't take into account combined styles, like Bold+Underline.
Sep
21
answered Dropdown of Font names in C#.Net
Sep
21
answered C# class design without using “Internal” or “Static”?
Sep
21
comment How do I invoke an extension method using reflection?
They're still a compiler trick, it's just the VB.NET compiler also uses the same trick.
Sep
21
answered Complex number notation
Sep
21
answered C# Error ‘No overload for method ‘getData’ takes ‘1’ arguments
Sep
21
comment How to identify the keyboard keys using C#
It's usually best to put the actual problem you are trying to solve in the title, not the problems you are having with a proposed problem. You can, obviously, then include your proposed solution and it's problem in the question. Currently anyone who knows how to identify when the system is locked but doesn't know how to hook keys will overlook your question when they actually have a valid alternative solution.
Sep
21
comment How to identify the keyboard keys using C#
@Johannes Rössel - I think he means when the account is locked and you are required to type a password in to unlock it.
Sep
21
answered Reading numbers from string in C#
Sep
21
answered Why null == myVar instead of myVar == null?
Sep
20
comment Algorithm for reading the actual content of news articles and ignoring “noise” on the page?
You could train it based upon the content of the text inside the html elements. First extract all the paragraphs of text, and then train it based on whether that paragraph is part of the article or not. I'm not sure how well this would work -- you may find that articles contain certain sorts of words while the noise contains different sorts. Or you may find that they are too indistinguishable. You can try and be a bit smart based on stop words, whether the paragraph contains words related to the headline, length of the text etc. as well.
Sep
19
comment Linq query to exclude from a List when a property value of List of different type are equal?
For simply queries some people prefer using the dot notation: var myFees = ctx.Fees.Where(fee => !ExcludedFeeIDs.Contains(fee.FeeID));
Sep
19
comment Input on same line as output in c#?
If it's a correct answer that works for you, then click the little tick on the left to accept it as the correct answer. It means the efforts of the commenter are recognised in reputation and makes it easier for people scanning for answers to see which the correct one is.
Sep
19
comment How to round decimal value up to nearest 0.05 value??
It should be noted that while this is a very good solution for the problem of rounding to arbitrary fractions, for decimal place rounding Math.Round should be used (just in case anyone comes looking at this question for a solution to more standard rounding).
Sep
19
answered How can I hide a base class public property in the derived class
Sep
19
comment How can I hide a base class public property in the derived class
Using The Browsable attribute is how they do it in the .NET Framework.
Sep
18
answered How can I hide a base class public property in the derived class
Sep
18
comment How can I hide a base class public property in the derived class
Your solution obviously only hides the setter. While it stops the immediate assignment, there is nothing to stop the following: ((a)obj).item1 = 4; b cannot be programmed under the assumption that item1 will never change, as it might. It stops the simple case but not every case. A more robust solution would be to re-architecture the inheritance hierarchy.
Sep
18
comment I cannot get my extension method to work (C#)
It can and does - msdn.microsoft.com/en-us/library/…
Aug
12
awarded  Civic Duty
Aug
11
comment determine if xml file contains data - c#
If you're only concerned about empty XML documents you can use reader.MoveToContent(); instead of the while(reader.Read()) {}
Aug
4
awarded  Yearling
Jul
6
awarded  Tumbleweed
Jun
29
answered Why are LINQ extensions written in a very difficult to read way?
Jun
29
asked Looking at location with Google Earth API