Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Binary literals and Digit separators
//--like
//0b00001000
//0xFF_00_FA_AF
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Binary literals and Digit separators
//--like
//0b00001000
//0xFF_00_FA_AF
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Event initializers
var client = new WebClient
{
DownloadFileCompleted +=
DownloadFileCompletedHandler
};
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Event initializers
var client = new WebClient
{
DownloadFileCompleted +=
DownloadFileCompletedHandler
};
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Nested Methods
void MyMethod(){
void calculator(int x)
{
return x * 2;
};
return calculator(10);
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Nested Methods
void MyMethod(){
void calculator(int x)
{
return x * 2;
};
return calculator(10);
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Field targets on auto-properties
[field: NonSerialized]
public int Age { get; set; }
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Field targets on auto-properties
[field: NonSerialized]
public int Age { get; set; }
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Inherent use of Tuples and language integration
(int x, int y) MyFunction(){
Console.WriteLine(“My Tuple is called”);
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Inherent use of Tuples and language integration
(int x, int y) MyFunction(){
Console.WriteLine(“My Tuple is called”);
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Inherent use of Tuples and language integration
public class Person
{
public readonly (string firstName, string lastName) Names; // a tuple
public Person((string FirstName, string LastName)) names, int Age)
{
Names = names;
}
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Inherent use of Tuples and language integration
public class Person
{
public readonly (string firstName, string lastName) Names; // a tuple
public Person((string FirstName, string LastName)) names, int Age)
{
Names = names;
}
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Inherent use of Tuples and language integration
(string first, string last) = GetNames("Inigo Montoya")
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Inherent use of Tuples and language integration
(string first, string last) = GetNames("Inigo Montoya")
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Using params with IEnumerable
int Avg(params IEnumerable<int> numbers)
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Using params with IEnumerable
int Avg(params IEnumerable<int> numbers)
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Declaration Expressions
public void CalculateAgeBasedOn(int birthYear, out int age)
{
age = DateTime.Now.Year - birthYear;
}
CalculateAgeBasedOn(1987, out var age);
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Declaration Expressions
public void CalculateAgeBasedOn(int birthYear, out int age)
{
age = DateTime.Now.Year - birthYear;
}
CalculateAgeBasedOn(1987, out var age);
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Primary Constructors
class Person(string name, int age)
{
private string _name = name;
private int _age = age;
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Primary Constructors
class Person(string name, int age)
{
private string _name = name;
private int _age = age;
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Pattern Matching
object obj;
// ...
switch(obj)
{
case 42:
// ...
case Color.Red:
// ...
case string s:
// ...
case Point(int x, 42) where (Y > 42):
// ...
case Point(490, 42): // fine
// ...
default:
// ...
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Pattern Matching
object obj;
// ...
switch(obj)
{
case 42:
// ...
case Color.Red:
// ...
case string s:
// ...
case Point(int x, 42) where (Y > 42):
// ...
case Point(490, 42): // fine
// ...
default:
// ...
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Async Streams
⚪️ IAsyncEnumerable will also work withAwait. It has
MoveNextAsync and Current property like
IEnumerable, and you can call them
using foreach loops.
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Async Streams
⚪️ IAsyncEnumerable will also work withAwait. It has
MoveNextAsync and Current property like
IEnumerable, and you can call them
using foreach loops.
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Async Streams
⚪️ Inherently thread-safe
⚪️ Makes it easier to use and reason about code
⚪️ Easier to parallelize your code
⚪️ Reference to immutable objects can be cached, as they won’t
change
public immutable class Point
{
public Point(int x, int y)
{
X = x;
Y = y;
}
public int X { get; }
public int Y { get; }
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Async Streams
⚪️ Inherently thread-safe
⚪️ Makes it easier to use and reason about code
⚪️ Easier to parallelize your code
⚪️ Reference to immutable objects can be cached, as they won’t
change
public immutable class Point
{
public Point(int x, int y)
{
X = x;
Y = y;
}
public int X { get; }
public int Y { get; }
}
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from عکس نگار
▪️CSharp 7.0 Hacks and Features
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Summary
⚪️ C# 6.0 is awesome
⚪️ There’s a lot of change in C# 6.0 • .NET Compiler Platform
("Roslyn") makes it easy for Microsoft to improve the language
⚪️ There’s a lot of interesting features that could go in C# 7.0
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
⏹The presentation talks about latest version of C# with context to next version of it.
⚪️Summary
⚪️ C# 6.0 is awesome
⚪️ There’s a lot of change in C# 6.0 • .NET Compiler Platform
("Roslyn") makes it easy for Microsoft to improve the language
⚪️ There’s a lot of interesting features that could go in C# 7.0
Ref: slideshare.net
#WroteBy <Abhishek Sur>
#Date <30 May 2016>
#ProgrammingLanguage
#Microsoft
#DotNeT
#CSharp
#CSharp7
#SlideShare
#Summary
by @D4NTESPARDA
@ @ProgrammingLanguages
Forwarded from تجارت الکترونیک
بهترین زبان برنامه نویسی برای من کدام است؟
با چند پرسش به شما میگوید که کدام زبان برای شما مناسب است.
bestprogramminglanguagefor.me
@eCommerceIdeas
با چند پرسش به شما میگوید که کدام زبان برای شما مناسب است.
bestprogramminglanguagefor.me
@eCommerceIdeas
This channel created for all discussion about programming languages both declarative and imperative and static and dynamic languages such as:
✅C like
✅Java like
✅XML like
Also talking about all architectural patterns like:
✅MVC
✅Layers
✅Event-driven
And all design patterns like:
✅OOP
And also about all various cms and bpms
And all modeling and software development process like:
✅RUP
✅UML
✅TDD
✅BPMN
And finally all software development methods like:
✅Agile
این کانال ساخته شده برای هر مباحثه ای درباره ی زبان های برنامه نویسی از هر دو نوع اعلانی یا دستوری و ایستا یا پویا اعم از:
✅مشابه c
✅مشابه java
✅مشابه xml
همچنین مباحثه درباره ی هر نوع الگوی معماری مانند:
✅مدل کنترل مشاهده
✅لایه ای
✅رویداد محور
و همه نوع الگوهای طراحی:
✅برنامه نویسی شی گرا
و هر نوع سیستم مدیرت محتوا و سیستم مدیریت فرآیند کسب و کار
و هر نوع فرآیند توسعه و مدل کردن نرم افزاری مانند:
✅فرآیند یکپارچه گویا
✅زبان مدل سازی یکپارچه
✅توسعه تست محور
✅مدل کردن و نشانه گذاری فرآیند کسب و کار
و نهایتا هر نوع متدولوژی توسعه نرم افزار مانند:
✅چابک
می باشد
@ProgrammingLanguages
✅C like
✅Java like
✅XML like
Also talking about all architectural patterns like:
✅MVC
✅Layers
✅Event-driven
And all design patterns like:
✅OOP
And also about all various cms and bpms
And all modeling and software development process like:
✅RUP
✅UML
✅TDD
✅BPMN
And finally all software development methods like:
✅Agile
این کانال ساخته شده برای هر مباحثه ای درباره ی زبان های برنامه نویسی از هر دو نوع اعلانی یا دستوری و ایستا یا پویا اعم از:
✅مشابه c
✅مشابه java
✅مشابه xml
همچنین مباحثه درباره ی هر نوع الگوی معماری مانند:
✅مدل کنترل مشاهده
✅لایه ای
✅رویداد محور
و همه نوع الگوهای طراحی:
✅برنامه نویسی شی گرا
و هر نوع سیستم مدیرت محتوا و سیستم مدیریت فرآیند کسب و کار
و هر نوع فرآیند توسعه و مدل کردن نرم افزاری مانند:
✅فرآیند یکپارچه گویا
✅زبان مدل سازی یکپارچه
✅توسعه تست محور
✅مدل کردن و نشانه گذاری فرآیند کسب و کار
و نهایتا هر نوع متدولوژی توسعه نرم افزار مانند:
✅چابک
می باشد
@ProgrammingLanguages
کانال آموزش رایگان BPM- BPMN- BPMS
فیلم، پادکست، اینفوگرافی، مقاله، وبینار رایگان و...
ویژه کارشناسان IT، صنایع، مدیریت، کامپیوتر
@bpmco
#Owner : @aliakbari_BPM
#BPMN
#BPMS
#BPM
#PodCast
#InfoGraphic
فیلم، پادکست، اینفوگرافی، مقاله، وبینار رایگان و...
ویژه کارشناسان IT، صنایع، مدیریت، کامپیوتر
@bpmco
#Owner : @aliakbari_BPM
#BPMN
#BPMS
#BPM
#PodCast
#InfoGraphic
#هر_یکشنبه_ساعت_۲۲
#گپ_مجازی_آی_تی
#کانون_فن_آوری_اطلاعات
#مهندس_بیانی
لینک گروه:
https://goo.gl/v2vAKT
#VirtualITChitChat
#Time: Sundays 22 PM
by @mansoornejad
@ @QITAir
#گپ_مجازی_آی_تی
#کانون_فن_آوری_اطلاعات
#مهندس_بیانی
لینک گروه:
https://goo.gl/v2vAKT
#VirtualITChitChat
#Time: Sundays 22 PM
by @mansoornejad
@ @QITAir
کانال و گروه تلگرامی سایت bpmn.ir:
🔷Links:
#Channel: https://t.iss.one/businessprocessmanagement
#Group: https://t.iss.one/joinchat/BR1jKj516fwuZSl7Kae4FA
🔹Fields:
#BPM
#BPMS
#BPMN
#Modeling
🔸Rules:
https://bpmn.ir/bpmn-telegram-grouprules
🔶 About:
⏺مدیریت فرآیندهای کسب و کار BPM
⏺سیستم های مدیریت فرآیند BPMS
⏺زبان مدلسازی فرآیندها BPMN
⏺بعضی از بحث های مطرح شده در گروه:
https://bpmn.ir/category/bpmn-telegram-group/
#Advertisement
by @D4NTESPARDA
@ @ProgrammingLanguages
🔷Links:
#Channel: https://t.iss.one/businessprocessmanagement
#Group: https://t.iss.one/joinchat/BR1jKj516fwuZSl7Kae4FA
🔹Fields:
#BPM
#BPMS
#BPMN
#Modeling
🔸Rules:
https://bpmn.ir/bpmn-telegram-grouprules
🔶 About:
⏺مدیریت فرآیندهای کسب و کار BPM
⏺سیستم های مدیریت فرآیند BPMS
⏺زبان مدلسازی فرآیندها BPMN
⏺بعضی از بحث های مطرح شده در گروه:
https://bpmn.ir/category/bpmn-telegram-group/
#Advertisement
by @D4NTESPARDA
@ @ProgrammingLanguages
Telegram
BPM - BPMS - BPMN
مدیریت فرآیندهای کسب و کار BPM
سیستم های مدیریت فرآیند BPMS
زبان مدلسازی فرآیندها BPMN
فرآیندکاوی Process Mining
#منبع #منابع #قانون #مقاله
لینگ گروه تلگرام: https://t.iss.one/bpmnir
Admin: @MahdiMJalali
سیستم های مدیریت فرآیند BPMS
زبان مدلسازی فرآیندها BPMN
فرآیندکاوی Process Mining
#منبع #منابع #قانون #مقاله
لینگ گروه تلگرام: https://t.iss.one/bpmnir
Admin: @MahdiMJalali
#VirtualITChitChat
#Time: Tuesdays 22:00 PM
#RelatedTags: #BPMTalk #No_02 #IDEF0 #BPM #BPR #BPMS #BPMN #BPMM
#Presenter: Mr Mehdi Jalali (@mahdimjalali)
@ @businessprocessmanagement
#Time: Tuesdays 22:00 PM
#RelatedTags: #BPMTalk #No_02 #IDEF0 #BPM #BPR #BPMS #BPMN #BPMM
#Presenter: Mr Mehdi Jalali (@mahdimjalali)
@ @businessprocessmanagement