| XML Document의 부분 | 부분에 해당하는 클래스 |
|---|---|
| document element | XmlElement |
| processing instructions | XmlProcessingInstruction |
| Element | XmlElement |
| Attribute | XmlAttribute |
| Test values | XmlText |
| Nodes | XmlNode |
Posted by 솔라뷰
| XML Document의 부분 | 부분에 해당하는 클래스 |
|---|---|
| document element | XmlElement |
| processing instructions | XmlProcessingInstruction |
| Element | XmlElement |
| Attribute | XmlAttribute |
| Test values | XmlText |
| Nodes | XmlNode |
Posted by 솔라뷰
Posted by 솔라뷰
Posted by 솔라뷰
public static void TestXPath()
{
string xmlText = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>";
xmlText += "<Properties xmlns=\"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties\" xmlns:vt=\"http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes\">";
xmlText += "<Template>Normal</Template> <TotalTime>1</TotalTime> <Pages>1</Pages> <Words>6</Words>";
xmlText += "</Properties>";
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(new System.IO.StringReader(xmlText));
foreach (XmlNode node in xmlDoc.SelectNodes("//Template"))
{
Console.WriteLine("{0}: {1}", node.Name, node.InnerText);
}
}
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(new System.IO.StringReader(xmlText));
XmlNamespaceManager manager = new XmlNamespaceManager(xmlDoc.NameTable);
manager.AddNamespace("ns",
"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties");
foreach (XmlNode node in xmlDoc.SelectNodes("//ns:Template", manager))
{
Console.WriteLine("{0}: {1}", node.Name, node.InnerText);
}Posted by 솔라뷰
During object-oriented analysis and design, we identify the most important objects in our system, and consider how they relate to each other. But during object-oriented programming, we don't write 'objects'; we define classes to represent the behavior and attributes of objects.
객체지향 분석과 설계를 하는 동안에, 우리는 우리 시스템 안의 가장 중요한 객체를 규명하고, 서로간에 어떻게 관계하는지를 고려한다. 그러나 객체지향 프로그래밍을 하는 동안에는 '객체들'을 작성하지 않는다. 다만 객체들의 행위와 속성을 대표하는 클래스를 정의한다.
(본문 중에서)
Posted by 솔라뷰
Posted by 솔라뷰
| | 설명 | Excel | VBA | VB6 | VB.NET | 비고 |
|---|---|---|---|---|---|---|
| sin | 사인함수 | Sin | Sin | Sin | Sin | |
| cos | 코사인함수 | Cos | Cos | Cos | Cos | |
| tan | 탄젠트함수 | Tan | Tan | Tan | Tan | |
| arcsin | 사인역함수 | Asin | - | - | Asin | |
| arccos | 코사인역함수 | Acos | - | - | Acos | |
| arctan | 탄젠트역함수 | Atan Atan2 | Atn | Atn | Atan Atan2 | |
| sinh | 하이퍼볼릭사인함수 | Sinh | - | - | Sinh | |
| cosh | 하이퍼볼릭코사인함수 | Cosh | - | - | Cosh | |
| tanh | 하이퍼볼릭탄젠트함수 | Tanh | - | - | Tanh | |
| arcsinh | 하이퍼볼릭사인역함수 | Asinh | - | - | - | |
| arccosh | 하이퍼볼릭코사인역함수 | Acosh | - | - | - | |
| arctanh | 하이퍼볼릭탄젠트역함수 | Atanh | - | - | - | |
area = WorksheetFunction.Pi * radius ^ 2
a = WorksheetFunction.Acos(b)
Posted by 솔라뷰
국립군산대학교 건축환경연구실/김용이 교수
- 솔라뷰