Programming languages
135 subscribers
202 photos
36 videos
49 files
249 links
A channel about all kind of programming languages, and their architectures and concepts.
Download Telegram
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
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
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
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
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
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
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
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
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
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
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
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
بهترین زبان برنامه نویسی برای من کدام است؟
با چند پرسش به شما میگوید که کدام زبان برای شما مناسب است.

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
کانال آموزش رایگان BPM- BPMN- BPMS
فیلم، پادکست، اینفوگرافی، مقاله، وبینار رایگان و...
ویژه کارشناسان IT، صنایع، مدیریت، کامپیوتر
@bpmco

#Owner : @aliakbari_BPM
#BPMN
#BPMS
#BPM
#PodCast
#InfoGraphic
Forwarded from BPM Talk
#آغاز
مزایای idef0 در تدوین معماری فرآیندهای سازمان
تاریخ ارائه: 14/6/1396
از سری برنامه های مدیریت فرآیندهای کسب و کار یا
BPMTalk
ارائه دهنده: مهندس جلالی
@bpmtalk
Forwarded from BPM Talk
This media is not supported in your browser
VIEW IN TELEGRAM
مزایای idef0 در تدوین معماری فرآیندهای سازمان قسمت اول، آشنایی با BPM Life cycle و گفتگوهای مدیریت فرآیند کسب و کار
—----------------
We Talk about BPM,BPR, BPMS, BPMN, BPMM
@bpmtalk