본문 바로가기

Software

The System.Console Class MSDN Most of methods are static WriteLine() pumps a text strings including a carriage return to the output stream Write() method pumps text to the output stream without a carriage return ReadLine() allows you to receive information from the input stream up until the Enter key is pressed Read() used to capture a single character from the input stream .NET Numerical Format Characters -------------.. 더보기
Processing Command-Line Arguments for Loop version static int Main(string[] args) { ... // Process any incoming args. for(int i = 0; i < args.Length; i++) Console.WriteLine("Arg: {0}", args[i]) Console.ReadLine(); return -1; } Foreach Version // Notice you have no need to check the size of the array when using "foreach". static int Main(string[] args) { ... // Process any incoming args using foreach. foreach(string arg in args) .. 더보기
Specifying Command-Line Arguments with Visual Studio 2010 더보기
The Assembly/Namespace/Type Distinction the .NET platform makes extensive use of the namespace concept A namespace is a grouping of semantically related types contained in an assembly 더보기
The CLR, CTS, CLS, and base class library relationship(.Net4.0) Using different compiler, but creates same IL files Benefits of CIL language integration - all languages are able to interact within a well-defined binary arena platform-agnostic, - the .NET Framework itself is platform-agnostic The Role of the Assembly Manifest metadata describes the assembly itself the assembly’s version number copyright information 더보기
Tree Definitions : Node : data stored at one location in the tree(A,B,C,D,E,F,G,H,I,J) Root node : top most node in the tree from which all other nodes originate(A) Leaf node : A node with no sub trees(D,E,F,I,J,G) Child: a node that descends from an existing node(B->J) Parent : root of the child node (A parent B) Siblings : nodes that have the same parent(H,G) Ancestor : All nodes that can be reache.. 더보기
[C++] 객체 포인터와 참조 /// #include using std::endl; using std::cout; class Person { public: void Sleep() { cout 더보기
Regular Expression ^ caret ^aaa the first line or beginning of string in the beginning of string, if there is "aaa" then true,otherwise false $ dollar aaa$ end of line or end of string in the end of line, if the line end with "aaa", then true, otherwise false . period ^a.c a..b$ exact one character "abc","adc","aZc",.. are true, "aa" is false end of string with these string,"aaab","abbb",azzb",..., then true [] br.. 더보기
How to syntaxhighlight onTistory blog see this blog http://gyuha.tistory.com/193 더보기
SSH Secure Shell Client FTP/Shell Client 더보기