This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################### | |
| # Core EditorConfig Options # | |
| ############################### | |
| root = true | |
| # All files | |
| [*] | |
| indent_style = space | |
| # Code files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | |
| <application | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name"> | |
| ... | |
| <provider |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export {} | |
| declare global { | |
| interface Date { | |
| addDays(days: number, useThis?: boolean): Date; | |
| isToday(): boolean; | |
| clone(): Date; | |
| isAnotherMonth(date: Date): boolean; | |
| isWeekend(): boolean; | |
| isSameDate(date: Date): boolean; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ElasticTableEntity : DynamicObject, ITableEntity, | |
| ICustomMemberProvider // For LinqPad's Dump | |
| { | |
| public ElasticTableEntity() | |
| { | |
| this.Properties = new Dictionary<string, EntityProperty>(); | |
| } | |
| public IDictionary<string, EntityProperty> Properties { get; private set; } | |