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
| [Rainmeter] | |
| Update=1000 | |
| Author=Connect-R | |
| BackgroundMode=2 | |
| SolidColor=0,0,0,1 | |
| DynamicWindowSize=1 | |
| AccurateText=1 | |
| MouseScrollUpAction=[!SetVariable Scale "(#Scale#+#ScrollMouseIncrement#)"][!WriteKeyValue Variables Scale "(#Scale#+#ScrollMouseIncrement#)"][!Refresh] | |
| MouseScrollDownAction=[!SetVariable Scale "(#Scale#-#ScrollMouseIncrement# < 0.2 ? 0.2 : #Scale#-#ScrollMouseIncrement#)"][!WriteKeyValue Variables Scale "(#Scale#-#ScrollMouseIncrement# < 0.2 ? 0.2 : #Scale#-#ScrollMouseIncrement#)"][!Refresh] | |
| LeftMouseDoubleClickAction=!ToggleConfig "Ageo\Settings" "Settings.ini" |
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 System.Threading.Tasks; | |
| using System.ComponentModel; | |
| using System.Windows.Forms; | |
| using System.Drawing; | |
| using System.Windows.Input; | |
| using System.Threading; |
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.IO; | |
| using System.IO.Compression; | |
| using System.Threading.Tasks; | |
| namespace LstSerializer | |
| { | |
| public class CompressedListSerializer<T> where T : new() | |
| { |
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
| // Implement WndProc in your own form, using the pattern below | |
| public partial class Form1 : Form | |
| { | |
| private MediaPlayer mediaPlayer; | |
| public Form1() | |
| { | |
| InitializeComponent(); | |
| // Subscribe to Form's OnClosing event | |
| Closing += OnClosing; |
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 Account | |
| { | |
| public string Result { get; set; } | |
| public long CustAccountID { get; set; } | |
| public int AccountType { get; set; } | |
| public int CustomerID { get; set; } | |
| public string Status { get; set; } | |
| public float Balance { get; set; } | |
| public float InitBalance { get; set; } | |
| public float ThresholdAmount { get; set; } |
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 WINKCrossViewX | |
| { | |
| public class AppSettings | |
| { | |
| public string Forges { get; set; } | |
| public string APIUsername { get; set; } | |
| public string APIPassword { get; set; } | |
| public string RefreshInterval { get; set; } | |
| } |
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 ConditionExpression<TFilter> | |
| { | |
| public Func<TFilter, bool> Condition { get; } | |
| public Expression Expression { get; } | |
| public ConditionExpression(Func<TFilter, bool> condition, Expression expression) | |
| { | |
| Condition = condition; | |
| Expression = expression; | |
| } |
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; | |
| namespace TextAdventure | |
| { | |
| class Program | |
| { | |
| 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 Antlr4.Runtime; | |
| using Antlr4.Runtime.Misc; | |
| namespace TSQLParser | |
| { | |
| /// <summary> | |
| /// This class supports case-insensitive lexing by wrapping an existing | |
| /// <see cref="ICharStream"/> and forcing the lexer to see either upper or | |
| /// lowercase characters. Grammar literals should then be either upper or | |
| /// lower case such as 'BEGIN' or 'begin'. The text of the character |
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 Antlr4.Runtime; | |
| using Antlr4.Runtime.Tree; | |
| using System; | |
| namespace TSQLParser | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { |
OlderNewer