User Stan R. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T18:27:03Zhttp://stackoverflow.com/feeds/user/119929http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821488/c-determine-property-type-at-runtime/1821534#18215341Answer by Stan R. for C# - Determine property type at runtimeStan R.2009-11-30T18:30:34Z2009-11-30T18:30:34Z<p>Seems like instead of working around this you should consider a different design. For instance creating a separate class all together for everything that is going to be WebContext and implementing a common interface.</p>
http://stackoverflow.com/questions/1799843/how-to-left-right-truncate-numbers-without-strings-euler-37/1799914#17999141Answer by Stan R. for How to left/right truncate numbers without strings (Euler #37)Stan R.2009-11-25T21:01:15Z2009-11-25T21:01:15Z<pre><code>var numbers = GetNumbers(3797);
public static IEnumerable<int> GetNumbers(int val)
{
int ba = 1;
int result = 1;
while(result > 0)
{
ba *= 10;
result = val / ba;
if(result > 0)
yield return result;
}
}
</code></pre>
<p>will produce</p>
<blockquote>
<p>379 37 3</p>
</blockquote>
http://stackoverflow.com/questions/1799055/trying-to-convert-xml-to-a-dictionary/1799117#17991172Answer by Stan R. for Trying to convert xml to a dictionaryStan R.2009-11-25T18:44:33Z2009-11-25T18:44:33Z<p>Specify what you want for Key and what for Value.</p>
<pre><code>var myDict = myXmlDoc.Elements()
.ToDictionary( key => key.Name, val => val.Value);
</code></pre>
http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792550#17925500Answer by Stan R. for How to merge 2 or more Lists implementing same interfaceStan R.2009-11-24T19:58:42Z2009-11-24T19:58:42Z<p>What Blindy means is unless you do</p>
<pre><code>public List<IBaseRecord> TypeARecords {get; set;}
public List<IBaseRecord> TypeBRecords {get; set;}
</code></pre>
<p>Then you can do something like</p>
<pre><code>public IEnumerable<IBaseRecord> AllRecords
{
get
{
return Enumerable.Concat(TypeARecords, TypeBRecords);
}
}
</code></pre>
http://stackoverflow.com/questions/1792101/generic-method-with-actiont-parameter/1792161#17921610Answer by Stan R. for Generic method with Action<T> parameterStan R.2009-11-24T18:56:38Z2009-11-24T18:56:38Z<p>Try this.</p>
<pre><code> Orangutan orangutan = new Orangutan();
Action<IAnimal> castedAction = action as Action<IAnimal>;
castedAction(orangutan);
</code></pre>
http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c/1791182#17911827Answer by Stan R. for Difference between Arrays & Single-Dimensional Arrays in c#Stan R.2009-11-24T16:25:46Z2009-11-24T16:25:46Z<p>What exactly is your question? Please specify. For now here are the different types of <a href="http://msdn.microsoft.com/en-us/library/aa288453%28VS.71%29.aspx" rel="nofollow">Arrays in C#</a>.</p>
<p>Single-dimensional arrays:</p>
<pre><code>int[] numbers;
</code></pre>
<p>Multidimensional arrays:</p>
<pre><code>string[,] names;
</code></pre>
<p>Array-of-arrays (jagged):</p>
<pre><code>byte[][] scores;
</code></pre>
http://stackoverflow.com/questions/1772224/passing-by-reference-not-working/1772265#17722651Answer by Stan R. for passing by reference not workingStan R.2009-11-20T18:00:01Z2009-11-20T18:00:01Z<p>You are changing a reference to an object you created in another method and you are pointing your IEntity instance to that object.</p>
http://stackoverflow.com/questions/1771813/lock-before-reading-a-global-string/1771861#17718611Answer by Stan R. for Lock before reading a global string?Stan R.2009-11-20T17:02:51Z2009-11-20T17:02:51Z<p>If you are not doing any writing or modifying any shared variables then you don't need to use lock.</p>
http://stackoverflow.com/questions/1690369/get-program-title-from-process-name-in-c/1690431#16904312Answer by Stan R. for Get program title from process name in C#Stan R.2009-11-06T21:03:55Z2009-11-06T21:09:20Z<p>Check out <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.fileversioninfo.aspx" rel="nofollow">FileVersionInfo</a> class might be helpful for you.</p>
<pre><code> var info = Process.GetProcessesByName("devenv").FirstOrDefault();
if (info != null)
{
Console.WriteLine(info.MainModule.FileVersionInfo.ProductName);
Console.WriteLine(info.MainModule.FileVersionInfo.FileDescription);
}
</code></pre>
http://stackoverflow.com/questions/1690220/c-typecast-basic-querry/1690292#16902920Answer by Stan R. for C# Typecast Basic querryStan R.2009-11-06T20:44:24Z2009-11-06T20:44:24Z<p>First, please clarify your code since it doesn't make any sense.</p>
<p>Second, ask yourself why are you using a struct? are you certain you need a struct? and not a class? look at other questions on StackOverflow that get into that topic.</p>
<p>Third</p>
<pre><code>(Package)strquery.strvalue
</code></pre>
<p>Is not valid code. strquery is a <strong>string</strong> and cannot be casted into <strong>Package</strong> struct. These are not objects related to each other at any level. (except that they both derive from <strong>object</strong> class)</p>
<p>Fourth if I were to assume you have a collection of Package based on your "question"</p>
<blockquote>
<p>I want to take the value of intvalues
of the Package whose name is strquery.</p>
</blockquote>
<p>You want something like this</p>
<pre><code>int[] foundValues;
foreach(Package pack in packageCollection)
{
if( pack.strvalue == strquery)
{
foundValues = pack.intvalues;
break;
}
}
</code></pre>
http://stackoverflow.com/questions/1669456/windows-file-security-removing-an-access-rule/1669619#16696191Answer by Stan R. for Windows File security, removing an access ruleStan R.2009-11-03T19:28:58Z2009-11-03T19:28:58Z<p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/system.security.accesscontrol.objectsecurity.setaccessruleprotection.aspx" rel="nofollow">SetAccessRuleProtection</a> on <code>DirectorySecurity</code> class, from reading it..I would think you'd need..</p>
<pre><code>ds.RemoveAccessRule(ar);
ds.SetAccessRuleProtection(true,false);
</code></pre>
<p>play around with it.</p>
http://stackoverflow.com/questions/1650604/linqtosql-query-that-spans-a-many-to-many-relation/1650659#16506590Answer by Stan R. for LinqToSql query that spans a many-to-many relation?Stan R.2009-10-30T15:55:44Z2009-10-30T15:55:44Z<p>Something like this perhaps</p>
<pre><code>var contentIds = from c in Content
join tc in TagContent on c.Id equals tc.ContentId
join t in Tag on tc.TagId equals t.Id
where t.Name == "Test"
select new
{
ContentId = c.Id
};
</code></pre>
http://stackoverflow.com/questions/1633535/an-efficient-solution-to-a-string-replace-problem/1633634#16336340Answer by Stan R. for An efficient solution to a String.Replace problem?Stan R.2009-10-27T20:57:50Z2009-10-27T21:03:46Z<p>This should do less string manipulation by selecting the values</p>
<pre><code> String[] strings = new String[1024];
KeyValuePair<String, String>[] pairs = new KeyValuePair<String, String>[ 50 ];
String[] replaced = strings.Select(x =>
pairs.Any( y => y.Key == x ) ?
pairs.Where( z => z.Key == x).Select( val => val.Value).First() : x )
.ToArray();
</code></pre>
http://stackoverflow.com/questions/1632078/split-string-in-512-char-chunks-c/1632223#16322231Answer by Stan R. for Split string in 512 char chunks [C#]Stan R.2009-10-27T16:54:45Z2009-10-27T17:11:12Z<p>using Jon's implementation and the <strong>yield</strong> keyword.</p>
<pre><code>IEnumerable<string> Chunks(string strText, int chunkSize)
{
for (int offset = 0; offset < text.Length; offset += size)
{
int size = Math.Min(chunkSize, text.Length - offset);
yield return text.Substring(offset, size);
}
yield break;
}
</code></pre>
http://stackoverflow.com/questions/1631926/find-which-account-a-service-is-set-to-log-on-as/1632126#16321261Answer by Stan R. for Find which account a service is set to "Log On As"Stan R.2009-10-27T16:39:53Z2009-10-27T16:39:53Z<p>This is the only way I know of, I found it looking around and tested it, it works. Make sure you use the Service Name not it's Display Name, you will also need to add a reference to <strong>System.Management</strong></p>
<pre><code>string serviceName = "aspnet_state";
SelectQuery query = new System.Management.SelectQuery(string.Format("select name, startname from Win32_Service where name = '{0}'", serviceName));
using (ManagementObjectSearcher searcher = new System.Management.ManagementObjectSearcher(query))
{
foreach (ManagementObject service in searcher.Get())
{
Console.WriteLine(string.Format("Name: {0} - Logon : {1} ", service["Name"], service["startname"]));
}
}
</code></pre>
http://stackoverflow.com/questions/1631754/c-using-a-generic-to-create-a-pointer-array/1631841#16318410Answer by Stan R. for C#: Using a generic to create a pointer arrayStan R.2009-10-27T16:00:40Z2009-10-27T16:00:40Z<p>From MSDN</p>
<blockquote>
<p>Even when used with the unsafe
keyword, taking the address of a
managed object, getting the size of a
managed object, or declaring a pointer
to a managed type is not allowed. For
more information, see <a href="http://msdn.microsoft.com/en-us/library/t2yzs44b%28VS.80%29.aspx" rel="nofollow">Unsafe Code and
Pointers (C# Programming Guide).</a></p>
</blockquote>
<p>Also I don't know if you are, but make sure you're using <a href="http://msdn.microsoft.com/en-us/library/f58wzh21%28VS.80%29.aspx" rel="nofollow">fixed keyword</a> in your code.</p>
http://stackoverflow.com/questions/1625892/initialize-properties-at-the-load-event-or-in-the-constructor/1625915#16259150Answer by Stan R. for Initialize properties at the load event or in the constructor?Stan R.2009-10-26T16:54:26Z2009-10-26T16:54:26Z<p>Constructor should be responsible for initialization, unless you have specific need or dependency to initialize your variable on Form Load, such as initializing it to something that is dependent on something else.</p>
http://stackoverflow.com/questions/1625377/is-this-a-good-factory-method-implementation/1625441#16254411Answer by Stan R. for Is this a good factory method implementation?Stan R.2009-10-26T15:19:59Z2009-10-26T15:19:59Z<p>Technically this is fine, however most times when I see a factory it usually returns the same type interface, for instance something like <code>IProvider</code> rather than <code>IFooProvider</code> or <code>IBarProvider</code> which to me doesn't make sense. If you are going to have FooProvider and BarProvider then why have different interfaces for them. I would use one interface <code>IProvider</code> and have <code>FooProvider</code> and <code>BarProvider</code> implement that.</p>
http://stackoverflow.com/questions/1615762/interface-alternative-approach/1615794#16157940Answer by Stan R. for Interface :- Alternative ApproachStan R.2009-10-23T20:47:41Z2009-10-23T20:52:53Z<p>you can use Action class to achieve this using delegates if you like </p>
<pre><code>class Test
{
static void Main()
{
List<Action> word = new List<Action>();
word.Add(new GroupOne().ExpressWords());
word.Add(new GroupTwo().ExpressWords());
foreach (Action del in word)
{
del();
}
Console.ReadKey(true);
}
}
</code></pre>
<p>if you want to use Delegates then you have to declare a Delegate type</p>
<pre><code>delegate void SomeMethod();
class Test
{
static void Main()
{
List<SomeMethod> word = new List<SomeMethod>();
word.Add(new GroupOne().ExpressWords());
word.Add(new GroupTwo().ExpressWords());
foreach (SomeMethod del in word)
{
del();
}
Console.ReadKey(true);
}
}
</code></pre>
http://stackoverflow.com/questions/1610051/complex-string-matching-with-linq-to-entity-framework/1610276#16102762Answer by Stan R. for Complex string matching with LINQ to Entity FrameworkStan R.2009-10-22T22:09:21Z2009-10-22T22:15:22Z<p>instead of using <strong>Equals</strong> try using <strong>Contains</strong> this should take your wild cards because internally LINQ uses <strong>LIKE</strong> when you use <strong>Contains</strong></p>
<pre><code>var results = from a in mycontainer.users
where a.fullname.Contains(newString)
select a.fullname;
</code></pre>
http://stackoverflow.com/questions/1609701/empty-sequence-in-linq/1609733#16097333Answer by Stan R. for Empty Sequence in LINQStan R.2009-10-22T20:22:35Z2009-10-22T20:22:35Z<p>You can use this when you want to quickly create an <code>IEnumerable<T></code> this way you don't have to create a reference to a new <code>List<T></code> and take advantage of the <strong>yield</strong> keyword. </p>
<pre><code>List<string[]> namesList =
new List<string[]> { names1, names2, names3 };
// Only include arrays that have four or more elements
IEnumerable<string> allNames =
namesList.Aggregate(Enumerable.Empty<string>(),
(current, next) => next.Length > 3 ? current.Union(next) : current);
</code></pre>
<p>Note the use of <strong>Union</strong> because it is not a <strong>List</strong> you can not call <strong>Add</strong> method, but you could call <strong>Union</strong> on an <code>IEnumerable</code></p>
http://stackoverflow.com/questions/1608317/how-do-i-pass-the-query-or-results-of-a-linq-to-sql-query-to-the-next-method/1608344#16083440Answer by Stan R. for How do I pass the query or results of a Linq to SQL query to the next methodStan R.2009-10-22T16:16:12Z2009-10-22T16:16:12Z<p>You cannot pass anonymous types into a new method, what you need to do is create a class to hold the information</p>
http://stackoverflow.com/questions/1607983/how-can-i-use-a-foreach-loop-to-delete-all-of-the-control-in-a-panel/1608014#16080148Answer by Stan R. for How can I use a foreach loop to delete all of the control in a panel?Stan R.2009-10-22T15:26:14Z2009-10-22T15:26:14Z<p>I believe you are changing the IEnumareble when you remove an item from it while iterating it.</p>
<p>Try to use a simple for loop instead of a foreach.</p>
http://stackoverflow.com/questions/1603599/array-of-string-with-unknown-size/1603604#16036046Answer by Stan R. for array of string with unknown sizeStan R.2009-10-21T21:01:48Z2009-10-21T21:13:24Z<p>Is there a specific reason why you need to use an array? If you don't know the size before hand you might want to use <code>List<String></code></p>
<pre><code>List<String> list = new List<String>();
list.Add("Hello");
list.Add("world");
list.Add("!");
Console.WriteLine(list[2]);
</code></pre>
<p>Will give you an output of </p>
<pre><code>!
</code></pre>
<p><a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">MSDN - List(T)</a> for more information</p>
http://stackoverflow.com/questions/1602102/is-it-bad-to-use-nested-try-catch-blocks-like-this/1602121#16021215Answer by Stan R. for Is it bad to use nested Try..Catch blocks like this?Stan R.2009-10-21T16:51:25Z2009-10-21T17:03:31Z<p>You should use SingleOrDefault, that way if a record doesn't exist it will return the default value for the class which is null.</p>
<pre><code>MainsDataContext dx = null;
try
{
dx = new MainsDataContext();
Main m = dx.Main.SingleOrDefault(s => s.Name == name);
if ( m == null)
{
Guid g = Guid.NewGuid();
m = new Main
{
Name = name,
ID = g
};
dx.Mains.InsertOnSubmit(m);
dx.SubmitChanges();
}
return m.ID;
}
catch (Exception ex)
{
// handle this
}
finally
{
if(dx != null)
dx.Dispose();
}
</code></pre>
<p>it is a good idea to use the <strong>using</strong> keyword when using a DataContext</p>
<pre><code>using ( MainsDataContext dx = new MainsDataContext())
{
Main m = dx.Main.SingleOrDefault(s => s.Name == name);
if ( m == null)
{
Guid g = Guid.NewGuid();
m = new Main
{
Name = name,
ID = g
};
dx.Mains.InsertOnSubmit(m);
dx.SubmitChanges();
}
return m.ID;
}
</code></pre>
http://stackoverflow.com/questions/1589638/possible-to-group-by-count-in-linq/1589689#15896890Answer by Stan R. for Possible to group by Count in LINQ?Stan R.2009-10-19T16:23:56Z2009-10-19T16:23:56Z<p>you can do something like this...</p>
<pre><code> List<int> integers = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
var p = integers.Select((x, index) => new { Num = index / 2, Val = x })
.GroupBy(y => y.Num);
</code></pre>
http://stackoverflow.com/questions/1579878/c-countdown-timer-using-numericupdown-as-interval/1585264#15852641Answer by Stan R. for C# - Countdown Timer Using NumericUpDown as IntervalStan R.2009-10-18T16:11:07Z2009-10-18T16:11:07Z<p>Here is a quick example to what you are looking for. This should give you a basic idea on what you need to do</p>
<pre><code> //class variable
private int totNumOfSec;
//set the event for the tick
//and the interval each second
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Interval = 1000;
private void button1_Click(object sender, EventArgs e)
{
totNumOfSec = (int)this.numericUpDown1.Value;
timer1.Start();
}
void timer1_Tick(object sender, EventArgs e)
{
//check the timer tick
totNumOfSec--;
if (totNumOfSec == 0)
{
//do capture
MessageBox.Show("Captured");
timer1.Stop();
}
else
label1.Text = "Caputring in " + totNumOfSec.ToString();
}
</code></pre>
http://stackoverflow.com/questions/1579085/how-the-transformation-is-possible/1579096#15790965Answer by Stan R. for How the transformation is possible ?Stan R.2009-10-16T16:37:37Z2009-10-16T16:37:37Z<p>No. The string representations are just in the correct order that's all. There is no magic here.</p>
<p>Look at the string array</p>
<pre><code>strings[0] = "zero";
strings[1] = "one";
strings[2] = "two";
.
.
</code></pre>
<p>the fact that its ordered correctly is why the mapping works.</p>
http://stackoverflow.com/questions/1574260/maintaining-usercontrol-state-on-dynamically-added-usercontrols/1574277#15742771Answer by Stan R. for Maintaining usercontrol state on dynamically added usercontrolsStan R.2009-10-15T18:43:24Z2009-10-15T18:43:24Z<p>Problem is you need to re-create the dynamic controls on each postback and recreate their viewstate. Take a look at this article <a href="http://aspnet.4guysfromrolla.com/articles/092904-1.aspx" rel="nofollow">Dynamic Web Controls, Postbacks, and View State</a> </p>
http://stackoverflow.com/questions/1573505/how-to-get-a-custom-object-out-of-a-list-with-linq/1573515#15735156Answer by Stan R. for How to get a custom object out of a List<> with LINQ?Stan R.2009-10-15T16:26:31Z2009-10-15T16:26:31Z<p><strong>Where</strong> returns an <em>IEnumerable</em> not a single result and using <strong>as</strong> doesn't throw an exception and just casts it to null, you need to use <strong>SingleOrDefault()</strong></p>
<pre><code>return products.Where(p => p.ProductNumber == productNumber).SingleOrDefault();
</code></pre>
http://stackoverflow.com/questions/1836109/is-this-a-proper-use-of-the-asynchronous-cababilities-of-the-socket-classComment by Stan R. on Is this a proper use of the asynchronous cababilities of the Socket class?Stan R.2009-12-02T22:09:59Z2009-12-02T22:09:59ZYou should single out issues which you think are of concern and formulate a generic question, that way we can answer it more generically and the answer maybe used over and over with whoever runs into a similar issue.http://stackoverflow.com/questions/1834524/c-wrapping-one-enum-inside-another-ie-mirroring-another-enum-copying-it/1834617#1834617Comment by Stan R. on C#: Wrapping one Enum inside another (ie. mirroring another enum/copying it...)Stan R.2009-12-02T17:59:16Z2009-12-02T17:59:16Zthis is more work than simply mapping out the Enum yourself...i don't necessarily think its worth it.http://stackoverflow.com/questions/1799767/easy-way-to-convert-a-dictionarystring-string-to-xml-and-visa-versa/1799792#1799792Comment by Stan R. on Easy way to convert a Dictionary<string, string> to xml and visa versaStan R.2009-11-25T20:44:37Z2009-11-25T20:44:37Zyou can use ToDictionary... <i>rootElement.Elements().ToDictionary( key => key.Name, val => val.Value);</i>
http://stackoverflow.com/questions/1799348/centering-a-string-against-another-stringComment by Stan R. on Centering a String against another stringStan R.2009-11-25T19:22:38Z2009-11-25T19:22:38Zwhat..the...? huh?http://stackoverflow.com/questions/1797667/c-switch-statement-refactoring/1797742#1797742Comment by Stan R. on C# Switch Statement refactoringStan R.2009-11-25T16:04:22Z2009-11-25T16:04:22Z@James 12AM = 0, 12PM = 12. This code checks for 12PMhttp://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792552#1792552Comment by Stan R. on How to merge 2 or more Lists implementing same interfaceStan R.2009-11-24T20:24:20Z2009-11-24T20:24:20Z@Guffa, +1 thanks for this piece of code. I constantly forget the "yield" keyword, i think this is a great reminder of thinking outside the box. thanks.http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792549#1792549Comment by Stan R. on How to merge 2 or more Lists implementing same interfaceStan R.2009-11-24T20:23:42Z2009-11-24T20:23:42Zyes this is "a solution", but I don't see how its better than the original questions code. http://stackoverflow.com/questions/1792503/how-to-merge-2-or-more-lists-implementing-same-interface/1792552#1792552Comment by Stan R. on How to merge 2 or more Lists implementing same interfaceStan R.2009-11-24T20:23:04Z2009-11-24T20:23:04Z@Michael D., you can use this code with .ToList() to create a copy to a list GetAllRecords.ToList()http://stackoverflow.com/questions/1791153/difference-between-arrays-single-dimensional-arrays-in-c/1791209#1791209Comment by Stan R. on Difference between Arrays & Single-Dimensional Arrays in c#Stan R.2009-11-24T16:31:00Z2009-11-24T16:31:00Z:D ........hahahaahttp://stackoverflow.com/questions/1790779/compare-two-list-in-linqComment by Stan R. on compare two list in linqStan R.2009-11-24T16:13:01Z2009-11-24T16:13:01Zyou would've gotten an answer within minutes if you were just a little bit more descriptive. Help us help you !http://stackoverflow.com/questions/1753021/how-can-i-communicate-with-my-cousin-when-she-can-only-move-her-eyesComment by Stan R. on How can I communicate with my cousin when she can only move her eyes?Stan R.2009-11-18T03:49:41Z2009-11-18T03:49:41Zcondolences..and good luck. http://stackoverflow.com/questions/1689957/using-c-api-in-c/1689985#1689985Comment by Stan R. on Using C++ API in C#Stan R.2009-11-06T19:59:11Z2009-11-06T19:59:11Z+1 this is exactly what i've done in the past. it made my life that much easier, especially since managed C++ is not that difficult.http://stackoverflow.com/questions/1686023/the-ultimate-fffffuuuuuuuuu-programming-moment/1689092#1689092Comment by Stan R. on The ultimate "FFFFFUUUUUUUUU" programming moment ?Stan R.2009-11-06T18:04:26Z2009-11-06T18:04:26Zhilarious... :-Dhttp://stackoverflow.com/questions/1669456/windows-file-security-removing-an-access-ruleComment by Stan R. on Windows File security, removing an access ruleStan R.2009-11-03T19:07:23Z2009-11-03T19:07:23Zis there a parent folder that is enforcing the rule you are trying to remove?http://stackoverflow.com/questions/1657607/winform-not-rendering-control-alterationsComment by Stan R. on Winform not rendering control alterationsStan R.2009-11-01T16:55:56Z2009-11-01T16:55:56Zmake sure your changes are being updated in the *.designer.cs file, without any code we can't really help you.