"Sexy Girls" "Sexy Indian Girls" "Sexy USA Girls" "Sexy RUSSIAN
Girls" "Sexy PAKISTANI Girls" "Sexy CHINESE Girls" "Sexy THAI Girls" "Sexy
JAPANESE Girls" "Sexy KOREAN Girls" "Sexy MODEL Girls" ON
www.sexyandpretty-girls.blogspot.com
Fri, 19 Mar 2010 14:09:07 -0700 (PDT)
"Sexy Girls" "Sexy Indian Girls" "Sexy USA Girls" "Sexy RUSSIAN Girls"
"Sexy PAKISTANI Girls" "Sexy CHINESE Girls" "Sexy THAI Girls" "Sexy
JAPANESE Girls" "Sexy KOREAN Girls" "Sexy MODEL Girls" ON
www.sexyandpretty-girls.blogspot.com "Sexy Girls" "Sexy
Indian Girls" "Sexy USA Girls" "Sexy RUSSIAN Gi ...
|
Re: can Linq extract the largest numeric part from this string list?
Fri, 19 Mar 2010 11:39:25 -0700
>>
http://www.infoq.com/news/2007/09/LINQ-Aggregates
<<
Thanks for this link. And incase my last post didn't make it (we were
having internet connection problems at my place) I did try combining the
previous suggestion with my technique and it worked very nicely:
var names =
from n in files
where ...
|
Re: Build events - configuration disabled
Fri, 19 Mar 2010 11:06:27 -0700
I am tripping too much on this project. I just tried your technique
combined with mine:
var names =
from n in files
where n.Contains("ADT")
select Path.GetFileName(n);
int max = (from name in names
let n = Regex.Replace(name, "[^0-9]+", "")
where n != ""
select int.Parse(n)).Max ...
|
can Linq extract the largest numeric part from this string list?
Fri, 19 Mar 2010 08:40:26 -0700
Here is the list and the Linq I am using to generate it:
ADT.JPG
ADT1.JPG
ADT10.GIF
ADT2.JPG
ADT3.JPG
ADT4.JPG
ADT5.BMP
ADT6.JPG
ADT7.BMP
ADT8.JPG
ADT8A.JPG
ADT9.GIF
var names =
from n in files
where n.Contains("ADT")
select Path.GetFileName(n);
foreach (string s in names)
Console.Write ...
|
Listview Filter
Fri, 19 Mar 2010 08:34:44 -0700 (PDT)
I have a listview with around a 1000 items. I'm using the following
code to filter the list:
private void Filter(string value)
{
for (int i = listView1.Items.Count - 1; -1 < i; i--)
{
if
(listView1.Items[i].SubItems[1].Text.StartsWith(value) == false)
...
|
Will a c# program run on any PC?
Fri, 19 Mar 2010 07:24:01 -0700
Hello,
I am new to C# and think that it is a very interesting tool. But there is
one question I couldn't find an answer til now:
Any C# program needs a .NET framework to run to translate the intermediate
language to the systems machine language. But will this framework be
available everywhere? Is it genera ...
|
Sip api for windows mobile
Fri, 19 Mar 2010 11:36:20 GMT
Hello,
I just started programming in the mobile with Windows Mobile using Visual
Studio, I need to develop a softphone based on SIP (Session Initiation
Protocol) which runs on Windows Mobile, after a week of research I have not
found until 'Now an API or SDK well-documented allows to do the thing, most
are paid ...
|
|
|
Build events - configuration disabled
Fri, 19 Mar 2010 02:49:03 -0700
I'm using C#/VS2005 and I'm trying to insert a different 'Postbuild event'
depending on whether I'm building for release or debug. The problem I have is
that the configuration setting is disabled, so I can currently only insert
one set of post build events.
I've Googled for an answer but drawn a blank. I al ...
|
csharp
Fri, 19 Mar 2010 02:28:27 -0700 (PDT)
I'm Matt Tibbals, pedophile. http://www.matthewtibbals.com ...
|
Any point to use BufferedStream when we have internalbuffer
Fri, 19 Mar 2010 09:31:17 +0100
Hi!
I know about the dispose pattern so you don't have to remaind me about that.
In this small code snipped(marked Ex1) an internal buffer(exist by default)
is used to store the data and when we do a flush or when the internal buffer
is full the data is forced to to underlaying stream.
Now to my question ...
|