This file contains 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
// IMPORTANT: Put this file in `Platforms/Android/` directory. | |
using Microsoft.Maui.ApplicationModel; | |
using System.Collections.Generic; | |
/// <summary> | |
/// MAUI Bluetooth Permission Decleration (for Android). | |
/// </summary> | |
/// <remarks> | |
/// IMPORTANT: Put this file in `Platforms/Android/` directory. | |
/// </remarks> |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Click Counter</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
body { | |
font-family: "Segoe UI"; | |
} |
This file contains 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
/// <summary> | |
/// pre-increment vs. post-increment | |
/// </summary> | |
/// <url> | |
/// https://medium.com/better-programming/stop-using-i-in-your-loops-1f906520d548 | |
/// </url> | |
public class LoopIncrements | |
{ | |
public int Repeat = 1_000_000; |