اشتراک‌ها
بررسی پیشنهادهای C# 7 بخش دوم
public int Calculate(int someInput)
{
    int Factorial(int i)
    {
        if (i <= 1)
            return 1;
        return i * Factorial(i - 1);
    }
    var input = someInput + ... // Other calcs
 
    return Factorial(input);
}
بررسی پیشنهادهای C# 7 بخش دوم
اشتراک‌ها
VisualSVN Server 3.4 منتشر شد
  • Update to the latest Apache Subversion 1.9 release.
  • New VisualSVN Server PowerShell cmdlets.
  • Other significant improvements related to various VisualSVN Server features.
VisualSVN Server 3.4 منتشر شد
اشتراک‌ها
چرا Babel خوبه ؟
Why Babel is different from other compile-to-JS systems like CoffeeScript and TypeScript, and how it's going to become the driving force for innovation in JavaScript. 
چرا Babel خوبه ؟
اشتراک‌ها
Mono و وفق یافتن با CoreCLR

A draft of the release notes for Mono 4.0 have been posted. Among other changes, they have started to adopt code from Microsoft’s CoreCLR project. 

Mono و وفق یافتن با CoreCLR
اشتراک‌ها
PDF Viewer تحت وب
Viewer.JS must be the easiest way to use presentations, spreadsheets, PDF's and other documents on your  website or blog without any external dependencies
PDF Viewer تحت وب
اشتراک‌ها
TypeScript و IIS
mime type آن تعریف نشده‌است:
<system.webServer>
   <staticContent>
       <remove fileExtension=".ts" />
       <mimeMap fileExtension=".ts" mimeType="text/x-typescript" />
   </staticContent>
<!-- Some other content -->
</system.webServer>
TypeScript و  IIS
نظرات مطالب
اهمیت ترتیب مقدار دهی فیلدهای استاتیک در زبان #C
یک نکته‌ی تکمیلی
اگر از Rider و یا ReSharper استفاده کنید، این نکته‌ی اهمیت ترتیب تعریف فیلدهای استاتیک را به صورت «Static member initializer refers to static member below or in other type part» نمایش می‌دهد: