mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
Comments
This commit is contained in:
parent
29ce47b8f9
commit
b9e7a965b9
4 changed files with 9 additions and 21 deletions
|
|
@ -2,9 +2,11 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Kernel.Plugs
|
||||
{
|
||||
class Console
|
||||
{
|
||||
namespace Cosmos.Kernel.Plugs {
|
||||
//Attrib here to mark this as a plug class for system.console
|
||||
class Console {
|
||||
// we dont need attrib here - all methods marked public will be plugged
|
||||
public void WriteLn(string aOut) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Kernel
|
||||
{
|
||||
class Console
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
@ -38,7 +38,6 @@
|
|||
<Reference Include="System" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Console.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
|
|||
|
|
@ -2,12 +2,9 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Cosmos.Shell.Console
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
namespace Cosmos.Shell.Console {
|
||||
class Program {
|
||||
static void Main(string[] args) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue