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
using LibVLCSharp.Shared; | |
using static MediaPlayerX.Helpers.GlobalResources; | |
using MediaPlayerX.Models; | |
using System; | |
using System.Threading.Tasks; | |
using Xamarin.Forms; | |
using MediaPlayerX.Helpers; | |
using System.Collections.ObjectModel; |
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 CornerRadiusEffect | |
{ | |
public static readonly BindableProperty CornerRadiusProperty = BindableProperty.CreateAttached( | |
nameof(CornerRadius), | |
typeof(CornerRadius), | |
typeof(CornerRadiusEffect), | |
default(CornerRadius), | |
propertyChanged: OnCornerRadiusPropertyChanged); | |
static void OnCornerRadiusPropertyChanged(BindableObject bindable, object oldValue, object newValue) |
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
using System; | |
namespace WeakTest | |
{ | |
class Program | |
{ | |
static WeakReference<SomeClass> myClass; | |
static SomeClass holder; | |
static void Main(string[] args) |
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
using Android.App; | |
using Android.Content; | |
using Android.Content.Res; | |
using Android.Graphics.Drawables; | |
using Android.OS; | |
using Android.Runtime; | |
using Android.Views; | |
using Android.Widget; | |
using Google.Android.Material.BottomNavigation; | |
using ShellBox.Droid; |
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" ?> | |
<Shell | |
x:Class="Xamarin.Forms.Controls.MyShell" | |
xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:local="clr-namespace:Xamarin.Forms.Controls.Issues"> | |
<Shell.FlyoutContentTemplate> | |
<DataTemplate> | |
<ScrollView> |
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 struct Point | |
{ | |
public int X {get;} | |
public int Y {get;} | |
// Usando ValueTuple | |
public override int GetHashCode() | |
{ | |
return (X, Y).GetHashCode(); |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Foundation; | |
using RemovePageReproduction.iOS; | |
using UIKit; | |
using Xamarin.Forms; | |
using Xamarin.Forms.Internals; |
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
using BenchmarkDotNet.Attributes; | |
using Microsoft.Diagnostics.Tracing.Parsers.Clr; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
namespace BenchmarkDotNet.Samples.Forms | |
{ |
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
{ | |
//Original code https://github.com/Clancey/Comet.Tasky/tree/master/.vscode | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"preLaunchTask": "build", |
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
{ | |
// Original code https://github.com/Clancey/Comet.Tasky/tree/master/.vscode | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "build", | |
"type": "comet", | |
"group": { |