sebastian

1,042
Reputation
121 views

Registered User

Name sebastian
Member for 1 year
Seen yesterday
Website
Location Montevideo, URUGUAY
Age 31
great .net developer, better person... ;)
1d
asked TaskDialog default button
Nov
16
revised F# - Let and Property Assignment in one line
edited tags
Nov
16
answered Writing Windows service in WCF
Nov
14
comment Log my battery performance on netbook
take a look at this question... it might help stackoverflow.com/questions/724349/…
Nov
13
comment How do I mock an IEnumerable<T> so that I can test a method that receives it
nop... actually in the given example it would just return one single object
Nov
13
comment How do I mock an IEnumerable<T> so that I can test a method that receives it
correct... +1 to the comment :)
Nov
13
comment How do I mock an IEnumerable<T> so that I can test a method that receives it
yes, with the yield return you can return as many as you want... I missed that...
Nov
13
comment How do I mock an IEnumerable<T> so that I can test a method that receives it
yap... much simpler than my solution (+1)
Nov
13
answered How do I mock an IEnumerable<T> so that I can test a method that receives it
Nov
13
answered Debugging error “The Type ‘xx’ is defined in an assembly that is not referenced”
Nov
11
answered Passing user’s identity across tiers with ASP.NET and WCF
Nov
10
accepted Retrieving and Displaying Build Information From CruiseControl.NET and MSBuild in an ASP.NET Application
Nov
10
comment Retrieving and Displaying Build Information From CruiseControl.NET and MSBuild in an ASP.NET Application
after compiling the app with the new AssemblyInfo file you can get the version from CurrentAssembly in your app
Nov
10
comment Which is the least in size for .net execution file?
i bet you I can make one smaller ;)
Nov
10
comment How to modify or delete items from an enumerable collection while iterating through it in C#
why not defining the list l as List<int> instead of var if you know it´s gonna be a List<int>? +1 though
Nov
10
answered Retrieving and Displaying Build Information From CruiseControl.NET and MSBuild in an ASP.NET Application
Nov
10
comment LINQ to append to a StringBuilder from a String[]
yes it is... msdn.microsoft.com/en-us/library/… :)
Nov
10
comment LINQ to append to a StringBuilder from a String[]
i wouldn´t use the .Select command... isn´t the ForEach command available?
Nov
10
comment StreamReader C#
could you post a sample code of what you´re doing? I don´t quite understand... wouldn´t a Console.WriteLine command do it?
Nov
10
answered Lucene.NET on shared hosting
Nov
6
answered Why aren’t my properties being displayed when trying to use them in an instanced object of the class?
Oct
22
answered Is there an application for displaying some kind of query plan for a Linq to object query?
Oct
19
comment Bit Curious to understand Expression Tree in .NET
@Lucero, I'm glad we both posted the same link :)
Oct
19
answered Bit Curious to understand Expression Tree in .NET
Oct
15
answered C# WCF service host question
Oct
14
comment SubSonic Outer Join
dude, this is a comment, not an answer ;)
Oct
14
answered LINQ: Checking if a field (db) contains items in an ILIST ?
Oct
13
answered What Easter Eggs have you placed in code?
Oct
1
awarded  Yearling
Sep
24
awarded  Taxonomist
Sep
5
comment Security issue with Azure
that's right smarx, thanx... I'm having another issue but this one is solved as you mentioned
Sep
4
answered Application pool restart automaticly if file change in repositery
Sep
4
asked Security issue with Azure
Aug
31
comment WCF client getting a TimeoutException (and I AM closing my connections)
that was not my problem... but thanks anyway
Aug
29
awarded  Self-Learner
Aug
20
comment Sharing data thru WCF services and aspx pages
thanks John ...
Aug
19
answered WCF Multiple Bindings
Aug
19
accepted Sharing data thru WCF services and aspx pages
Aug
19
answered Sharing data thru WCF services and aspx pages
Aug
19
accepted WCF client getting a TimeoutException (and I AM closing my connections)
Aug
18
comment Sharing data thru WCF services and aspx pages
good tip! it's a simple app (one same app with wcf services and pages) and it is running on the same AppDomain according to the script I found on this site learn.iis.net/page.aspx/164/…
Aug
17
comment Sharing data thru WCF services and aspx pages
According to the diagram on this page it is possible... msdn.microsoft.com/en-us/library/…
Aug
17
asked Sharing data thru WCF services and aspx pages
Aug
17
awarded  Popular Question
Aug
7
awarded  Notable Question
Aug
1
comment Error when calling the service in async mode
it did not help, but that's the way one is suppose to do it, so I mark as answered. Found the same resolution from many resources, don't know what my problrm is :(
Jul
31
comment Import added does not appear in the Imports collection (Msbuild Project)
I kinda solved it with this: p.Load(p.Xml); ugly!
Jul
31
asked Import added does not appear in the Imports collection (Msbuild Project)
Jul
6
comment Best way to access properties of my codebehind class from the markup in ASP.NET
I don't quite understand what you're trying to do...
Jul
1
comment WCF Typed Faults and Internal Server Error code 500?
Are you getting that message in a ProtocolException? I had an issue with those exceptions cause I always got the html code in the exception message. Now I just asume that every protocol exception comes with this html code and I parse it to get the real message. stackoverflow.com/questions/998065/…