Skip to content

Files

Latest commit

 

History

History
12 lines (7 loc) · 350 Bytes

prefer-type-cast.md

File metadata and controls

12 lines (7 loc) · 350 Bytes

Pattern: Use of as-cast syntax

Issue: -

Description

Prefer the tradition type casts instead of the new as-cast syntax. For example, prefer <string>myVariable instead of myVariable as string.

Further Reading