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
namespace Steg | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Drawing.Imaging; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using System.Text; |
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
using Microsoft.EntityFrameworkCore; | |
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using Microsoft.Extensions.Hosting; | |
using Piranha; | |
using Piranha.AttributeBuilder; | |
using Piranha.AspNetCore.Identity.SQLite; | |
using Piranha.Data.EF.SQLite; | |
using Piranha.Manager.Editor; | |
using OrchardCore.Environment.Shell.Configuration; |
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
# House - Memory | |
# FruitBowl, Table, Stove, Couch, TVStand - Specific addresses in Memory | |
# Orange, Apple, Banana - Data we want stored in Memory | |
# Note - Contains specific address in memory or <None> | |
# House[FruitBowl] -> Note -> Table | |
# House[Table] -> Orange, Stove | |
# House[Stove] -> Apple, Couch | |
# House[Couch] -> Banana, <None> | |
# House[Stove].Note = House[Couch].Note | |
# House[TVStand] = (Orange, House[FruitBowl].Note) |
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
public static class MagicStrings | |
{ | |
public const string Potato = "Potato"; | |
public const string Tomato = "Tomato"; | |
private static string[] _strings; | |
public static string[] Strings | |
{ | |
get | |
{ |
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
using System; | |
namespace VMSandbox | |
{ | |
class AModel | |
{ | |
public DateTime Date { get; set; } = DateTime.UtcNow; | |
public int MyLifeForTheCodeDownloads { get; set; } = Int32.MaxValue; | |
} |