- People from the team try to hang out here, but there's no guarantee they'll see your question. For more persistent discussion, ask on ASP.Net forums or StackOverflow and add a link to the chat room
- Room owners are team members! They know what's up!
- The more code you can give us, the better chance we'll have of figuring out your problem.
- Other questions? Having trouble getting someone to see a question you're asking? Tweet @anurse
View Sleepsort.cs
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Threading; | |
namespace ConsoleApplication2 { | |
class Program { | |
static void Main(string[] args) { |
View gist:1340667
int Count(Folder f) { | |
int count = 0; | |
foreach(Item i in f) { | |
if(i is File) { | |
count++; | |
} else { | |
count += Count((Folder)i); | |
} | |
} | |
return count; |
View Product.cs
// Product Code | |
internal interface IFoo | |
{ | |
void Bar(); | |
void Baz(); | |
} |
View reccos.md
View file.cs
public void Foo() { | |
} |
View IConsole.cs
public interface IConsole { | |
void WriteLine(string line); | |
} |
View PatchedWebViewPage.cs
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
using System.Web.WebPages; | |
using System.Web.WebPages.Instrumentation; | |
namespace MvcApplication1.Patches |
View PatchedWebViewPage.cs
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; | |
using System.Web.WebPages; | |
using System.Web.WebPages.Instrumentation; | |
namespace MvcApplication1.Patches |
View BlobScanner.cs
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Microsoft.WindowsAzure.Storage; | |
using Microsoft.WindowsAzure.Storage.Blob; | |
namespace BlobScanner | |
{ |
View Program.cs
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Curious | |
{ | |
class Program |
OlderNewer