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
package com.example.calculator; | |
import android.os.Bundle; | |
import androidx.annotation.NonNull; | |
import androidx.annotation.Nullable; | |
import androidx.fragment.app.Fragment; | |
import androidx.lifecycle.ViewModelProvider; | |
import android.view.LayoutInflater; |
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.Security.Cryptography; | |
using System.Text; | |
namespace PaymentSystem; | |
internal static class Program | |
{ | |
private 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 UnityEngine; | |
public class ComboAttack : MonoBehaviour | |
{ | |
[SerializeField] private AnimationClip clip; | |
private int counter; | |
private int tempCounter; | |
private float chillDelay; | |
private float betweenComboDelay; | |
private float chillTimer; |
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 CarAssembly; | |
using DetailAssembly; | |
using ServiceAssembly; | |
using StorageAssembly; | |
using WalletAssembly; | |
using InputValidatorAssembly; | |
namespace ClientAutoservice | |
{ | |
class Program |
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
[RequireComponent(typeof(TimerMonobeh))] | |
public class ClientTimerMonobeh : MonoBehaviour | |
{ | |
[SerializeField] private int _bonus = 1; | |
[SerializeField] private float _period = 0.5f; | |
private int _score; | |
private TimerMonobeh _timer; | |
private void Awake() |
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.Diagnostics; | |
class Prog | |
{ | |
static void Main(string[] args) | |
{ | |
Stopwatch stopwatch = new Stopwatch(); | |
ExampleStruct struct1 = new ExampleStruct(); | |
struct1.PrintSize(); |
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.Runtime.CompilerServices; | |
using System.Threading.Channels; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
List<int> nums = new(); | |
Generate(nums); | |
var nums2 = nums.Where(IsMoreThanFive); |
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
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
List<Soldier> soldiers = new List<Soldier>() | |
{ | |
new Soldier(10), | |
new Soldier(0), | |
new Soldier(0) |
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
namespace Storage | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var product = new Product("A", 1); | |
var product2 = new Product("A", 1); | |
int amount = 5; |
NewerOlder